|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<MasterState> com.sun.faban.driver.engine.MasterState
public enum MasterState
MasterState allows querying the state of the master.
Enum Constant Summary | |
---|---|
ABORTED
Aborted. |
|
CONFIGURING
Configuring. |
|
NOT_STARTED
Not Started. |
|
RAMPDOWN
Ramp down. |
|
RAMPUP
Ramp up. |
|
RESULTS
Results. |
|
STARTING
Starting. |
|
STEADYSTATE
Steady State. |
Method Summary | |
---|---|
static MasterState |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static MasterState[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final MasterState NOT_STARTED
public static final MasterState CONFIGURING
public static final MasterState STARTING
public static final MasterState RAMPUP
public static final MasterState STEADYSTATE
public static final MasterState RAMPDOWN
public static final MasterState RESULTS
public static final MasterState ABORTED
Method Detail |
---|
public static MasterState[] values()
for (MasterState c : MasterState.values()) System.out.println(c);
public static MasterState valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |