public enum InputEventType extends java.lang.Enum<InputEventType>
| Enum Constant and Description |
|---|
KEY_DOWN |
KEY_REPEAT |
KEY_UP |
MOUSE_DOWN |
MOUSE_MOVE |
MOUSE_SCROLL |
MOUSE_UP |
| Modifier and Type | Method and Description |
|---|---|
static InputEventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InputEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InputEventType MOUSE_UP
public static final InputEventType MOUSE_DOWN
public static final InputEventType MOUSE_MOVE
public static final InputEventType KEY_UP
public static final InputEventType KEY_DOWN
public static final InputEventType KEY_REPEAT
public static final InputEventType MOUSE_SCROLL
public static InputEventType[] values()
for (InputEventType c : InputEventType.values()) System.out.println(c);
public static InputEventType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null