com.intel.cosbench.model
Enum StageState
java.lang.Object
java.lang.Enum<StageState>
com.intel.cosbench.model.StageState
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<StageState>
public enum StageState
- extends java.lang.Enum<StageState>
Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
WAITING
public static final StageState WAITING
BOOTING
public static final StageState BOOTING
SUBMITTING
public static final StageState SUBMITTING
AUTHING
public static final StageState AUTHING
LAUNCHING
public static final StageState LAUNCHING
RUNNING
public static final StageState RUNNING
CLOSING
public static final StageState CLOSING
COMPLETED
public static final StageState COMPLETED
TERMINATED
public static final StageState TERMINATED
CANCELLED
public static final StageState CANCELLED
ABORTED
public static final StageState ABORTED
FINAL_STATES
public static java.util.Set<StageState> FINAL_STATES
values
public static StageState[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (StageState c : StageState.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static StageState valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
isStopped
public static boolean isStopped(StageState state)
isRunning
public static boolean isRunning(StageState state)
hasLaunched
public static boolean hasLaunched(StageState state)