public static enum Application.AppState extends java.lang.Enum<Application.AppState>
Enum Constant and Description |
---|
GRANTING |
IDLE |
PAUSED |
RUNNING |
STARTED |
STOPPED |
Modifier and Type | Method and Description |
---|---|
static Application.AppState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Application.AppState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Application.AppState STARTED
public static final Application.AppState GRANTING
public static final Application.AppState RUNNING
public static final Application.AppState PAUSED
public static final Application.AppState STOPPED
public static final Application.AppState IDLE
public static Application.AppState[] values()
for (Application.AppState c : Application.AppState.values()) System.out.println(c);
public static Application.AppState 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 null