public static enum MapView.TouchMode extends Enum<MapView.TouchMode>
| Enum Constant and Description |
|---|
AUTO
Auto means support mode is automatically selected
|
INVALID
An invalid option
|
PAN
Supports pan operations
|
PAN_AND_ZOOM
Supports pan and zoom operations
|
PAN_AND_ZOOM_AND_ROTATE
Supports pan, zoom, and rotate operations
|
ROTATE
Supports rotate operations
|
TILT
Supports tilt operations
|
ZOOM
Supports zoom operations
|
| 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