public static enum MapViewEventListener.TouchEvent extends Enum<MapViewEventListener.TouchEvent>
| Enum Constant and Description |
|---|
Begin
The touch behavior begins
|
End
The user released the screen
|
Invalid
An invalid touch event
|
Move
The user touches and moves
|
| Modifier and Type | Method and Description |
|---|---|
static MapViewEventListener.TouchEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MapViewEventListener.TouchEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapViewEventListener.TouchEvent Begin
public static final MapViewEventListener.TouchEvent Move
public static final MapViewEventListener.TouchEvent End
public static final MapViewEventListener.TouchEvent Invalid
public static MapViewEventListener.TouchEvent[] values()
for (MapViewEventListener.TouchEvent c : MapViewEventListener.TouchEvent.values()) System.out.println(c);
public static MapViewEventListener.TouchEvent 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