public enum OrchestratorStatus extends Enum<OrchestratorStatus>
Enum Constant and Description |
---|
ERROR
Encountered unrecoverable error.
|
NOT_STARTED
Constructed but not yet started.
|
PAUSED
Paused.
|
PAUSING
In the process of pausing.
|
RUNNING
Running and pulling requests from response queue.
|
SHUTDOWN
Fully shutdown.
|
SHUTTING_DOWN
In the process of shutting down.
|
Modifier and Type | Method and Description |
---|---|
static OrchestratorStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OrchestratorStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OrchestratorStatus NOT_STARTED
public static final OrchestratorStatus RUNNING
public static final OrchestratorStatus PAUSING
public static final OrchestratorStatus PAUSED
public static final OrchestratorStatus SHUTTING_DOWN
public static final OrchestratorStatus SHUTDOWN
public static final OrchestratorStatus ERROR
public static OrchestratorStatus[] values()
for (OrchestratorStatus c : OrchestratorStatus.values()) System.out.println(c);
public static OrchestratorStatus 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