public enum LevelEnum extends Enum<LevelEnum> implements BaseTypeStateEnum
| Modifier and Type | Method and Description |
|---|---|
Integer |
getKey() |
String |
getValue() |
static LevelEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LevelEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LevelEnum ONE
public static final LevelEnum TWO
public static final LevelEnum THREE
public static LevelEnum[] values()
for (LevelEnum c : LevelEnum.values()) System.out.println(c);
public static LevelEnum 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.