public static enum Constants.EH_STATUS extends java.lang.Enum<Constants.EH_STATUS>
| Enum Constant and Description |
|---|
NOT_REGISTERED
The not registered.
|
REGISTERED
The registered.
|
| Modifier and Type | Method and Description |
|---|---|
static Constants.EH_STATUS |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Constants.EH_STATUS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.EH_STATUS REGISTERED
public static final Constants.EH_STATUS NOT_REGISTERED
public static Constants.EH_STATUS[] values()
for (Constants.EH_STATUS c : Constants.EH_STATUS.values()) System.out.println(c);
public static Constants.EH_STATUS valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null