public enum ExecuteOn extends java.lang.Enum<ExecuteOn>
GestureModifierBase
operation occursEnum Constant and Description |
---|
DoubleTap
Executes on Double Tap gesture
|
Fling
Executes on Fling gesture
|
LongPress
Executes on Long Press gesture
|
SingleTap
Executes on Single Tap gesture
|
Modifier and Type | Method and Description |
---|---|
static ExecuteOn |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExecuteOn[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecuteOn SingleTap
public static final ExecuteOn DoubleTap
public static final ExecuteOn LongPress
public static final ExecuteOn Fling
public static ExecuteOn[] values()
for (ExecuteOn c : ExecuteOn.values()) System.out.println(c);
public static ExecuteOn 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