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