public static enum AdHocCommand.Action extends Enum<AdHocCommand.Action>
Enum Constant and Description |
---|
cancel
The command should be canceled.
|
complete
The command should be completed (if possible).
|
execute
The command should be executed or continue to be executed.
|
next
The command should progress to the next stage of execution.
|
prev
The command should be digress to the previous stage of execution.
|
unknown
The action is unknow.
|
Modifier and Type | Method and Description |
---|---|
static AdHocCommand.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AdHocCommand.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdHocCommand.Action execute
public static final AdHocCommand.Action cancel
public static final AdHocCommand.Action prev
public static final AdHocCommand.Action next
public static final AdHocCommand.Action complete
public static final AdHocCommand.Action unknown
public static AdHocCommand.Action[] values()
for (AdHocCommand.Action c : AdHocCommand.Action.values()) System.out.println(c);
public static AdHocCommand.Action valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null