public static enum Constants.AC_STATE extends java.lang.Enum<Constants.AC_STATE>
| Enum Constant and Description |
|---|
CREATED
The created.
|
INITIALIZED
The initialized.
|
NEED_ACTING
The need acting.
|
PROCESSING
The processing.
|
TERMINATED
The terminated.
|
WAITING_BEGIN
The waiting begin.
|
WAITING_RESPONSE
The waiting response.
|
| Modifier and Type | Method and Description |
|---|---|
static Constants.AC_STATE |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Constants.AC_STATE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.AC_STATE CREATED
public static final Constants.AC_STATE INITIALIZED
public static final Constants.AC_STATE WAITING_BEGIN
public static final Constants.AC_STATE PROCESSING
public static final Constants.AC_STATE NEED_ACTING
public static final Constants.AC_STATE WAITING_RESPONSE
public static final Constants.AC_STATE TERMINATED
public static Constants.AC_STATE[] values()
for (Constants.AC_STATE c : Constants.AC_STATE.values()) System.out.println(c);
public static Constants.AC_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