public enum StateEnum extends Enum<StateEnum> implements BaseTypeStateEnum
| Modifier and Type | Method and Description |
|---|---|
Integer |
getKey() |
String |
getValue() |
static StateEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StateEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StateEnum DISABLE
public static final StateEnum ENABLE
public static StateEnum[] values()
for (StateEnum c : StateEnum.values()) System.out.println(c);
public static StateEnum valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic Integer getKey()
getKey in interface BaseTypeStateEnumpublic String getValue()
getValue in interface BaseTypeStateEnumCopyright © 2019. All rights reserved.