public static enum MapViewEventListener.TOUCH_TYPE extends Enum<MapViewEventListener.TOUCH_TYPE>
| Enum Constant and Description |
|---|
TOUCH_DOWN |
TOUCH_MOVE |
TOUCH_UP |
| Modifier and Type | Method and Description |
|---|---|
static MapViewEventListener.TOUCH_TYPE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MapViewEventListener.TOUCH_TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapViewEventListener.TOUCH_TYPE TOUCH_DOWN
public static final MapViewEventListener.TOUCH_TYPE TOUCH_UP
public static final MapViewEventListener.TOUCH_TYPE TOUCH_MOVE
public static MapViewEventListener.TOUCH_TYPE[] values()
for (MapViewEventListener.TOUCH_TYPE c : MapViewEventListener.TOUCH_TYPE.values()) System.out.println(c);
public static MapViewEventListener.TOUCH_TYPE 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 null