public enum SystemStates extends java.lang.Enum<SystemStates>
| Enum Constant and Description | 
|---|
GAMEING_CONTEXT
There is a location called GAMEING_CONTEXT defined. 
 | 
GAMING_CONTEXT_PAUSED
There is a location called GAMING_CONTEXT_PAUSED defined. 
 | 
NO_ACTIVITY
There is a location called NO_ACTIVITY defined. 
 | 
OFF
There is a location called OFF defined. 
 | 
ON
There is a location called ON defined. 
 | 
PRIVATE_CONTEXT
There is a location called PRIVATE_CONTEXT defined. 
 | 
WORK_CONTEXT
There is a location called WORK_CONTEXT defined. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static SystemStates | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static SystemStates[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final SystemStates OFF
public static final SystemStates ON
public static final SystemStates NO_ACTIVITY
public static final SystemStates PRIVATE_CONTEXT
public static final SystemStates WORK_CONTEXT
public static final SystemStates GAMEING_CONTEXT
public static final SystemStates GAMING_CONTEXT_PAUSED
public static SystemStates[] values()
for (SystemStates c : SystemStates.values()) System.out.println(c);
public static SystemStates 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