public enum GGNavigationEvent extends java.lang.Enum<GGNavigationEvent>
| Enum Constant and Description | 
|---|
| BACK_DOWNBACK button pressed. | 
| BACK_UPBACK button released. | 
| LONG_BACK_DOWNBACK button long-time pressed. | 
| LONG_MENU_DOWNMENU button long-time pressed. | 
| MENU_DOWNMENU button pressed. | 
| MENU_UPMENU button released. | 
| VOLUME_DECREASE_DOWNVOLUME_DECREASE button pressed. | 
| VOLUME_DECREASE_REPEATVOLUME_DECREASE button held down. | 
| VOLUME_DECREASE_UPVOLUME_DECREASE button released. | 
| VOLUME_INCREASE_DOWNVOLUME_INCREASE button pressed. | 
| VOLUME_INCREASE_REPEATVOLUME_INCREASE button held down. | 
| VOLUME_INCREASE_UPVOLUME_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