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