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