public enum ScreenSpaceEventType extends Enum<ScreenSpaceEventType>
Enum Constant and Description |
---|
LEFT_CLICK |
LEFT_DOUBLE_CLICK |
LEFT_DOWN |
LEFT_UP |
MIDDLE_CLICK |
MIDDLE_DOUBLE_CLICK |
MIDDLE_DOWN |
MIDDLE_UP |
MOUSE_MOVE |
PINCH_END |
PINCH_MOVE |
PINCH_START |
RIGHT_CLICK |
RIGHT_DOUBLE_CLICK |
RIGHT_DOWN |
RIGHT_UP |
WHEEL |
Modifier and Type | Field and Description |
---|---|
int |
nativeValue |
Modifier and Type | Method and Description |
---|---|
static ScreenSpaceEventType |
valueOf(int nativeValue) |
static ScreenSpaceEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScreenSpaceEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScreenSpaceEventType LEFT_DOWN
public static final ScreenSpaceEventType LEFT_UP
public static final ScreenSpaceEventType LEFT_CLICK
public static final ScreenSpaceEventType LEFT_DOUBLE_CLICK
public static final ScreenSpaceEventType RIGHT_DOWN
public static final ScreenSpaceEventType RIGHT_UP
public static final ScreenSpaceEventType RIGHT_CLICK
public static final ScreenSpaceEventType RIGHT_DOUBLE_CLICK
public static final ScreenSpaceEventType MIDDLE_DOWN
public static final ScreenSpaceEventType MIDDLE_UP
public static final ScreenSpaceEventType MIDDLE_CLICK
public static final ScreenSpaceEventType MIDDLE_DOUBLE_CLICK
public static final ScreenSpaceEventType MOUSE_MOVE
public static final ScreenSpaceEventType WHEEL
public static final ScreenSpaceEventType PINCH_START
public static final ScreenSpaceEventType PINCH_END
public static final ScreenSpaceEventType PINCH_MOVE
public static ScreenSpaceEventType[] values()
for (ScreenSpaceEventType c : ScreenSpaceEventType.values()) System.out.println(c);
public static ScreenSpaceEventType 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 static ScreenSpaceEventType valueOf(int nativeValue)
Copyright © 2014. All rights reserved.