public enum CommandExecutionState extends java.lang.Enum<CommandExecutionState>
Enum Constant and Description |
---|
DISABLED |
EXECUTING |
FAILED |
SUCCEEDED |
UNDEFINED |
UNHANDLED |
WAITING |
Modifier and Type | Method and Description |
---|---|
static CommandExecutionState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CommandExecutionState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommandExecutionState UNDEFINED
public static final CommandExecutionState DISABLED
public static final CommandExecutionState UNHANDLED
public static final CommandExecutionState WAITING
public static final CommandExecutionState EXECUTING
public static final CommandExecutionState SUCCEEDED
public static final CommandExecutionState FAILED
public static CommandExecutionState[] values()
for (CommandExecutionState c : CommandExecutionState.values()) System.out.println(c);
public static CommandExecutionState 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