public enum GGNavigationEvent extends java.lang.Enum<GGNavigationEvent>
| Enum Constant and Description | 
|---|
BACK_DOWN
BACK button pressed. 
 | 
BACK_UP
BACK button released. 
 | 
LONG_BACK_DOWN
BACK button long-time pressed. 
 | 
LONG_MENU_DOWN
MENU button long-time pressed. 
 | 
MENU_DOWN
MENU button pressed. 
 | 
MENU_UP
MENU button released. 
 | 
VOLUME_DECREASE_DOWN
VOLUME_DECREASE button pressed. 
 | 
VOLUME_DECREASE_REPEAT
VOLUME_DECREASE button held down. 
 | 
VOLUME_DECREASE_UP
VOLUME_DECREASE button released. 
 | 
VOLUME_INCREASE_DOWN
VOLUME_INCREASE button pressed. 
 | 
VOLUME_INCREASE_REPEAT
VOLUME_INCREASE button held down. 
 | 
VOLUME_INCREASE_UP
VOLUME_INCREASE button released. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static GGNavigationEvent | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static GGNavigationEvent[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final GGNavigationEvent BACK_DOWN
public static final GGNavigationEvent LONG_BACK_DOWN
public static final GGNavigationEvent BACK_UP
public static final GGNavigationEvent MENU_DOWN
public static final GGNavigationEvent LONG_MENU_DOWN
public static final GGNavigationEvent MENU_UP
public static final GGNavigationEvent VOLUME_INCREASE_DOWN
public static final GGNavigationEvent VOLUME_INCREASE_UP
public static final GGNavigationEvent VOLUME_INCREASE_REPEAT
public static final GGNavigationEvent VOLUME_DECREASE_DOWN
public static final GGNavigationEvent VOLUME_DECREASE_UP
public static final GGNavigationEvent VOLUME_DECREASE_REPEAT
public static GGNavigationEvent[] values()
for (GGNavigationEvent c : GGNavigationEvent.values()) System.out.println(c);
public static GGNavigationEvent 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