Enum枚举类、内部类

[b]1、Demo01[/b]

public enum TestInfoType {
/**自定义描述信息*/
TYPE_01("1",PriorityEnum.PRIORITY_5.getValue()),
/**自定义描述信息*/
TYPE_02("2",PriorityEnum.PRIORITY_5.getValue()),
/**自定义描述信息*/
TYPE_03("3",PriorityEnum.PRIORITY_8.getValue()),
/**自定义描述信息 */
TYPE_04("4",PriorityEnum.PRIORITY_20.getValue()),
/**自定义描述信息*/
TYPE_05("5",PriorityEnum.PRIORITY_20.getValue()),
/**自定义描述信息*/
TYPE_16("16",PriorityEnum.PRIORITY_14.getValue());
//状态码
private String code;
//优先级
private Integer priority;
/**
* 私有构造器
* @param code
*/
private TestInfoType(String code,Integer priority){
this.code=code;
this.priority=priority;
}
/*
* get方法
*/
public String getCode() {
return code;
}

/*set方法
public void setCode(String code) {
this.code = code;
}*/

public Integer getPriority() {
return priority;
}
/*set方法
public void setPriority(Integer priority) {
this.priority = priority;
}*/
public static TestInfoType getEnumByCode(String code) {
if(StringUtils.isNotBlank(code)) {
for (TestInfoType item : TestInfoType .values()) {
if (item.getCode().equals(code)) {
return item;
}
}
}
return null;
}
}


[b]2、Demo02[/b]

public class TestConstants {
public static final Integer TYPE_INT_CONTENT=8888;
public static final String TYPE_STR_CONTENT="9999";
/**
* 自定义注释
*/
public abstract class Test01 {
public static final String Test01_A="0";
public static final int Test01_B=1;
}
/**
* 自定义注释
*/
public static class Test02 {
public static final String Test02_A="ADVANCE_BRANCH";
public static final String Test02_B="MODOU_SHARE_HTML";
}
/**
* 自定义注释
*/
public static class Test03{
private Test03(){}
public static final String Test03_A= "6";
}
}

使用:
Test01.Test01_A
Test02.Test02_B
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值