public static enum PlanControlState.STATE extends java.lang.Enum<PlanControlState.STATE>
Enum Constant and Description |
---|
BLOCKED |
EXECUTING |
INITIALIZING |
READY |
Modifier and Type | Method and Description |
---|---|
long |
value() |
static PlanControlState.STATE |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PlanControlState.STATE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlanControlState.STATE BLOCKED
public static final PlanControlState.STATE READY
public static final PlanControlState.STATE INITIALIZING
public static final PlanControlState.STATE EXECUTING
public static PlanControlState.STATE[] values()
for (PlanControlState.STATE c : PlanControlState.STATE.values()) System.out.println(c);
public static PlanControlState.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 nullpublic long value()