public enum CloseDelStatus extends Enum<CloseDelStatus> implements DetailEnum<Integer>
| 枚举常量和说明 |
|---|
CLOSE |
OPEN |
SYS_DELETE |
USER_DELETE |
| 限定符和类型 | 方法和说明 |
|---|---|
String |
getClassName() |
String |
getDesc() |
Integer |
getValue() |
String |
toString() |
static CloseDelStatus |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static CloseDelStatus[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final CloseDelStatus OPEN
public static final CloseDelStatus CLOSE
public static final CloseDelStatus USER_DELETE
public static final CloseDelStatus SYS_DELETE
public static CloseDelStatus[] values()
for (CloseDelStatus c : CloseDelStatus.values()) System.out.println(c);
public static CloseDelStatus valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public String toString()
toString 在类中 Enum<CloseDelStatus>public String getDesc()
getDesc 在接口中 DetailEnum<Integer>public Integer getValue()
getValue 在接口中 DetailEnum<Integer>public String getClassName()
getClassName 在接口中 DetailEnum<Integer>Copyright © 2016. All rights reserved.