public static enum GlobalInfo.ExecutionMode extends java.lang.Enum<GlobalInfo.ExecutionMode>
GlobalInfo.getExecutionMode()
and GlobalInfo.getExecutionModeDescription()
GlobalInfo.getExecutionMode()
Enum Constant and Description |
---|
APPLICATION |
DEVICE_SYSTEM |
SERVER |
SERVER_MASTER |
SERVER_SLAVE |
Modifier and Type | Method and Description |
---|---|
static GlobalInfo.ExecutionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GlobalInfo.ExecutionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GlobalInfo.ExecutionMode APPLICATION
public static final GlobalInfo.ExecutionMode SERVER
public static final GlobalInfo.ExecutionMode SERVER_MASTER
public static final GlobalInfo.ExecutionMode SERVER_SLAVE
public static final GlobalInfo.ExecutionMode DEVICE_SYSTEM
public static GlobalInfo.ExecutionMode[] values()
for (GlobalInfo.ExecutionMode c : GlobalInfo.ExecutionMode.values()) System.out.println(c);
public static GlobalInfo.ExecutionMode 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