public static enum ExecutionHandle.HandleState extends Enum<ExecutionHandle.HandleState>
| Enum Constant and Description |
|---|
Cancel
Canceled state.
|
Completed
Completed state.
|
Paused
Paused state.
|
Ready
Ready state.
|
Running
Running state.
|
| Modifier and Type | Method and Description |
|---|---|
static ExecutionHandle.HandleState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionHandle.HandleState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionHandle.HandleState Ready
public static final ExecutionHandle.HandleState Running
public static final ExecutionHandle.HandleState Paused
public static final ExecutionHandle.HandleState Completed
public static final ExecutionHandle.HandleState Cancel
public static ExecutionHandle.HandleState[] values()
for (ExecutionHandle.HandleState c : ExecutionHandle.HandleState.values()) System.out.println(c);
public static ExecutionHandle.HandleState 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 nullCopyright © 2014. All Rights Reserved.