public static enum ComputationManager.ComputationManagerState extends java.lang.Enum<ComputationManager.ComputationManagerState>
| Enum Constant and Description |
|---|
DEPLOYED |
INITIALIZED |
NEW |
RUNNING |
TERMINATED_FAIL |
TERMINATED_SUCCESS |
| Modifier and Type | Method and Description |
|---|---|
static ComputationManager.ComputationManagerState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ComputationManager.ComputationManagerState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComputationManager.ComputationManagerState NEW
public static final ComputationManager.ComputationManagerState INITIALIZED
public static final ComputationManager.ComputationManagerState DEPLOYED
public static final ComputationManager.ComputationManagerState RUNNING
public static final ComputationManager.ComputationManagerState TERMINATED_FAIL
public static final ComputationManager.ComputationManagerState TERMINATED_SUCCESS
public static ComputationManager.ComputationManagerState[] values()
for (ComputationManager.ComputationManagerState c : ComputationManager.ComputationManagerState.values()) System.out.println(c);
public static ComputationManager.ComputationManagerState 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