public enum SystemContext extends Enum<SystemContext>
| Enum Constant and Description |
|---|
SYSCTXT_ALERT
Broadcast only to whichever app has an alert currently being displayed.
|
SYSCTXT_HMI_OBSCURED
The app's display HMI is currently being obscured by either a system or
other app's overlay.
|
SYSCTXT_MAIN
No user interaction (user-initiated or app-initiated) is in progress.
|
SYSCTXT_MENU
Menu-oriented, user-initiated or app-initiated interaction is
in-progress.
|
SYSCTXT_VRSESSION
VR-oriented, user-initiated or app-initiated interaction is in-progress.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static SystemContext |
valueForString(String value) |
static SystemContext |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SystemContext[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SystemContext SYSCTXT_MAIN
public static final SystemContext SYSCTXT_VRSESSION
public static final SystemContext SYSCTXT_MENU
public static final SystemContext SYSCTXT_HMI_OBSCURED
public static final SystemContext SYSCTXT_ALERT
public static SystemContext[] values()
for (SystemContext c : SystemContext.values()) System.out.println(c);
public static SystemContext 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 String toString()
toString in class Enum<SystemContext>public static SystemContext valueForString(String value)