枚举类定义如下:
复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30public enum Status { SUCCESS("1","成功"),FAILED("2","失败"); private String value; private String desc; private Status(String value, String desc) { this.value = value; this.desc = desc; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } public String getDesc() { return desc; } public void setDesc(String desc) { this.desc = desc; } }
使用的方式如下:
复制代码
1
2
3
4
5
6
7
8
9public class StatusTest { public static void main(String [] args){ System.out.println(Status.SUCCESS.getValue()); System.out.println(Status.SUCCESS.getDesc()); System.out.println(Status.FAILED.getValue()); System.out.println(Status.FAILED.getDesc()); } }
运行结果:
1
成功
2
失败
再比如,我们在操作数据库的时候,通常使用数字保存到数据库中,但是在界面上显示的时候,需要展示其中文意思
那么我们就可以通过下边的方式:
复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43public enum FlightType { OW(1,"单程"),RT(2,"往返"); public Integer code; public String desc; FlightType(Integer code,String desc){ this.code = code; this.desc = desc; } public Integer getCode() { return code; } public void setCode(Integer code) { this.code = code; } public String getDesc() { return desc; } public void setDesc(String desc) { this.desc = desc; } public static FlightType getTypeByCode(Integer code){ FlightType defaultType = FlightType.OW; for(FlightType ftype : FlightType.values()){ if(ftype.code == code){ return ftype; } } return defaultType; } public static String getDescByCode(Integer code){ return getTypeByCode(code).desc; } }
最后
以上就是贤惠小甜瓜最近收集整理的关于Java中枚举类型enum的一种使用方式的全部内容,更多相关Java中枚举类型enum内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复