public static enum StartStoppStatus.Status extends java.lang.Enum<StartStoppStatus.Status>
Enum Constant and Description |
---|
CONFIGERROR |
INITIALIZED |
RUNNING |
RUNNING_CANCELED |
SHUTDOWN |
STOPPED |
STOPPING |
STOPPING_CANCELED |
Modifier and Type | Method and Description |
---|---|
static StartStoppStatus.Status |
fromValue(java.lang.String value) |
java.lang.String |
toString() |
java.lang.String |
value() |
static StartStoppStatus.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StartStoppStatus.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StartStoppStatus.Status INITIALIZED
public static final StartStoppStatus.Status RUNNING
public static final StartStoppStatus.Status RUNNING_CANCELED
public static final StartStoppStatus.Status STOPPING
public static final StartStoppStatus.Status STOPPING_CANCELED
public static final StartStoppStatus.Status STOPPED
public static final StartStoppStatus.Status SHUTDOWN
public static final StartStoppStatus.Status CONFIGERROR
public static StartStoppStatus.Status[] values()
for (StartStoppStatus.Status c : StartStoppStatus.Status.values()) System.out.println(c);
public static StartStoppStatus.Status valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<StartStoppStatus.Status>
public java.lang.String value()
public static StartStoppStatus.Status fromValue(java.lang.String value)