public enum GestureHandlingType extends Enum<GestureHandlingType>
| Enum Constant and Description |
|---|
AUTO
Gesture handling is either cooperative or greedy, depending on whether the page is scrollable
or in an iframe.
|
COOPERATIVE
Scroll events and one-finger touch gestures scroll the page, and do not zoom or pan the map.
|
GREEDY
All touch gestures and scroll events pan or zoom the map.
|
NONE
The map cannot be panned or zoomed by user gestures.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static GestureHandlingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GestureHandlingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GestureHandlingType AUTO
public static final GestureHandlingType COOPERATIVE
public static final GestureHandlingType GREEDY
public static final GestureHandlingType NONE
public static GestureHandlingType[] values()
for (GestureHandlingType c : GestureHandlingType.values()) System.out.println(c);
public static GestureHandlingType 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 nullpublic String toString()
toString in class Enum<GestureHandlingType>Copyright © 2018 Regenstrief Center for Biomedical Informatics. All rights reserved.