public enum TouchEventType extends java.lang.Enum<TouchEventType>
| Modifier and Type | Method and Description |
|---|---|
static java.lang.String |
getJSEventName(TouchEventType type) |
static TouchEventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TouchEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TouchEventType START
public static final TouchEventType END
public static final TouchEventType MOVE
public static final TouchEventType CANCEL
public static TouchEventType[] values()
for (TouchEventType c : TouchEventType.values()) System.out.println(c);
public static TouchEventType 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 static java.lang.String getJSEventName(TouchEventType type)