public enum SystemAction extends Enum<SystemAction>
| Enum Constant and Description |
|---|
DEFAULT_ACTION
Default action occurs.
|
KEEP_CONTEXT
Current system context is maintained.
|
STEAL_FOCUS
App is brought into HMI_FULL.
|
| Modifier and Type | Method and Description |
|---|---|
static SystemAction |
valueForString(String value)
Convert String to SystemAction
|
static SystemAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SystemAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SystemAction DEFAULT_ACTION
public static final SystemAction STEAL_FOCUS
public static final SystemAction KEEP_CONTEXT
public static SystemAction[] values()
for (SystemAction c : SystemAction.values()) System.out.println(c);
public static SystemAction valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static SystemAction valueForString(String value)
value - String