public static enum MapView.TouchMode extends Enum<MapView.TouchMode>
| Enum Constant and Description |
|---|
AUTO |
INVALID |
PAN |
PAN_AND_ZOOM |
PAN_AND_ZOOM_AND_ROTATE |
ROTATE |
TILT |
ZOOM |
| Modifier and Type | Method and Description |
|---|---|
static MapView.TouchMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MapView.TouchMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapView.TouchMode AUTO
public static final MapView.TouchMode INVALID
public static final MapView.TouchMode PAN
public static final MapView.TouchMode PAN_AND_ZOOM
public static final MapView.TouchMode ZOOM
public static final MapView.TouchMode PAN_AND_ZOOM_AND_ROTATE
public static final MapView.TouchMode ROTATE
public static final MapView.TouchMode TILT
public static MapView.TouchMode[] values()
for (MapView.TouchMode c : MapView.TouchMode.values()) System.out.println(c);
public static MapView.TouchMode 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