最近为了便于对状态码的描述信息进行解析,学习了一下Enum的使用,发现还挺好使的。
首先,定义一个Enum的类Status,有两个属性statusValue状态码 以及 statusDesc状态描述
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
|
public enum Status { STATUS_OK( "01" , "成功" ), STATUS_FAILED( "02" , "失败" ), STATUS_NOTHING( "03" , "未知状态" ); private Status(String statusValue, String statusDesc){ this .statusValue = statusValue; this .statusDesc = statusDesc; } //通过statusValue获取状态描述 public static String getStatusDesc(String statusValue){ for (Status s : Status.values()){ if (s.statusValue.equals(statusValue)){ return s.statusDesc; } } return null ; } //重写toString方法 @Override public String toString(){ return "statusValue=" + this .statusValue + ",statusDesc=" + this .statusDesc; } private String statusValue; //状态值 private String statusDesc; //状态描述 public String getStatusValue() { return statusValue; } public void setStatusValue(String statusValue) { this .statusValue = statusValue; } public String getStatusDesc() { return statusDesc; } public void setStatusDesc(String statusDesc) { this .statusDesc = statusDesc; } } |
测试如下
1
2
3
4
5
6
7
8
|
public class App { public static void main( String[] args ) { System.out.println(Status.getStatusDesc( "01" )); //输出:成功 System.out.println(Status.STATUS_FAILED.getStatusDesc()); //输出:失败 System.out.println(Status.STATUS_NOTHING.toString()); //输出:statusValue=03,statusDesc=未知状态 } } |
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:http://www.cnblogs.com/fengxm/p/7462069.html