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