public enum DispatchTouchEventType extends Enum<DispatchTouchEventType>
| Enum Constant and Description |
|---|
TOUCH_CANCEL |
TOUCH_END |
TOUCH_MOVE |
TOUCH_START |
| Modifier and Type | Method and Description |
|---|---|
static DispatchTouchEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DispatchTouchEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DispatchTouchEventType TOUCH_START
public static final DispatchTouchEventType TOUCH_END
public static final DispatchTouchEventType TOUCH_MOVE
public static final DispatchTouchEventType TOUCH_CANCEL
public static DispatchTouchEventType[] values()
for (DispatchTouchEventType c : DispatchTouchEventType.values()) System.out.println(c);
public static DispatchTouchEventType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All rights reserved.