com.intel.cosbench.model
Enum StageState

java.lang.Object
  extended by java.lang.Enum<StageState>
      extended by com.intel.cosbench.model.StageState
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<StageState>

public enum StageState
extends java.lang.Enum<StageState>


Enum Constant Summary
ABORTED
           
AUTHING
           
BOOTING
           
CANCELLED
           
CLOSING
           
COMPLETED
           
LAUNCHING
           
RUNNING
           
SUBMITTING
           
TERMINATED
           
WAITING
           
 
Field Summary
static java.util.Set<StageState> FINAL_STATES
           
 
Method Summary
static boolean hasLaunched(StageState state)
           
static boolean isRunning(StageState state)
           
static boolean isStopped(StageState state)
           
static StageState valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StageState[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
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
 

Enum Constant Detail

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
Field Detail

FINAL_STATES

public static java.util.Set<StageState> FINAL_STATES
Method Detail

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)