public static enum Gesture.Action extends java.lang.Enum<Gesture.Action>
Enum Constant and Description |
---|
Download
Download action
|
Exit
Exit action
|
InternalSearch
Internal search action
|
Navigate
Navigation gesture
|
Touch
Simple gesture
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
stringValue() |
static Gesture.Action |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Gesture.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Gesture.Action Touch
public static final Gesture.Action Navigate
public static final Gesture.Action Download
public static final Gesture.Action Exit
public static final Gesture.Action InternalSearch
public static Gesture.Action[] values()
for (Gesture.Action c : Gesture.Action.values()) System.out.println(c);
public static Gesture.Action 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 nullpublic java.lang.String stringValue()