| Enum Constant and Description |
|---|
GAMEPAD |
MOTION_CONTROLLER
Deprecated.
since v859
|
MOUSE |
TOUCH |
UNDEFINED |
| Modifier and Type | Method and Description |
|---|---|
static InputMode |
from(int id) |
static InputMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InputMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InputMode UNDEFINED
public static final InputMode MOUSE
public static final InputMode TOUCH
public static final InputMode GAMEPAD
public static final InputMode MOTION_CONTROLLER
public static InputMode[] values()
for (InputMode c : InputMode.values()) System.out.println(c);
public static InputMode 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 nullpublic static InputMode from(int id)