| Enum Constant and Description |
|---|
A |
B |
C |
D |
DOWN |
E |
EIGHT |
ENTER |
ESCAPE |
F |
FIVE |
FOUR |
G |
H |
I |
J |
K |
L |
LEFT |
M |
N |
NINE |
O |
ONE |
P |
Q |
R |
RIGHT |
S |
SEVEN |
SIX |
SPACEBAR |
T |
THREE |
TWO |
U |
UP |
V |
W |
X |
Y |
Z |
ZERO |
| Modifier and Type | Method and Description |
|---|---|
static KeyCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static KeyCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyCode LEFT
public static final KeyCode RIGHT
public static final KeyCode UP
public static final KeyCode DOWN
public static final KeyCode ENTER
public static final KeyCode SPACEBAR
public static final KeyCode ESCAPE
public static final KeyCode A
public static final KeyCode B
public static final KeyCode C
public static final KeyCode D
public static final KeyCode E
public static final KeyCode F
public static final KeyCode G
public static final KeyCode H
public static final KeyCode I
public static final KeyCode J
public static final KeyCode K
public static final KeyCode L
public static final KeyCode M
public static final KeyCode N
public static final KeyCode O
public static final KeyCode P
public static final KeyCode Q
public static final KeyCode R
public static final KeyCode S
public static final KeyCode T
public static final KeyCode U
public static final KeyCode V
public static final KeyCode W
public static final KeyCode X
public static final KeyCode Y
public static final KeyCode Z
public static final KeyCode ONE
public static final KeyCode TWO
public static final KeyCode THREE
public static final KeyCode FOUR
public static final KeyCode FIVE
public static final KeyCode SIX
public static final KeyCode SEVEN
public static final KeyCode EIGHT
public static final KeyCode NINE
public static final KeyCode ZERO
public static KeyCode[] values()
for (KeyCode c : KeyCode.values()) System.out.println(c);
public static KeyCode 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