public enum MasterState extends Enum<MasterState>
Enum Constant and Description |
---|
ABORTED
Aborted.
|
CONFIGURING
Configuring.
|
NOT_STARTED
Not Started.
|
RAMPDOWN
Ramp down.
|
RAMPUP
Ramp up.
|
RESULTS
Results.
|
STARTING
Starting.
|
STEADYSTATE
Steady State.
|
Modifier and Type | Method and Description |
---|---|
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.
|
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
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 nameNullPointerException
- if the argument is null