首页 > 代码库 > java中使用枚举类型,代码如下

java中使用枚举类型,代码如下

public enum CommonStatus {
    NORMAL(1), PAUSE(2), DELETE(3);
    private int value;
    private CommonStatus(int v) {
        this.value = http://www.mamicode.com/v;
    }
    
    public int getValue() {
        return value;
    }
    
    public static String getName(int v) {
        switch (v) {
        case 1:
            return "正常";
        case 2:
            return "停用";
        case 3:
            return "删除";
        default:
            return "";
        }
    }
    
    public static String getName(CommonStatus s) {
        return getName(s.getValue());
    }
}

java中使用枚举类型,代码如下