public static enum Constants.EA_STATE extends java.lang.Enum<Constants.EA_STATE>
| Enum Constant and Description |
|---|
CREATED
The created.
|
FINALIZED
The finalized.
|
INITIALIZED
The initialized.
|
TERMINATING
The terminating.
|
| Modifier and Type | Method and Description |
|---|---|
static Constants.EA_STATE |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Constants.EA_STATE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.EA_STATE CREATED
public static final Constants.EA_STATE INITIALIZED
public static final Constants.EA_STATE TERMINATING
public static final Constants.EA_STATE FINALIZED
public static Constants.EA_STATE[] values()
for (Constants.EA_STATE c : Constants.EA_STATE.values()) System.out.println(c);
public static Constants.EA_STATE 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