JavaScript is disabled on your browser.
Enum Constant Summary
Enum Constants
Method Summary
All Methods Static Methods Concrete Methods
Returns the enum constant of this class with the specified name.
Returns an array containing the constants of this enum class, in
the order they are declared.
Methods inherited from class java.lang.Enum
clone , compareTo , describeConstable , equals , finalize , getDeclaringClass , hashCode , name , ordinal , toString , valueOf
Enum Constant Details
ESCAPE
public static final Key ESCAPE
F1
public static final Key F1
F2
public static final Key F2
F3
public static final Key F3
F4
public static final Key F4
F5
public static final Key F5
F6
public static final Key F6
F7
public static final Key F7
F8
public static final Key F8
F9
public static final Key F9
F10
public static final Key F10
F11
public static final Key F11
F12
public static final Key F12
F13
public static final Key F13
F14
public static final Key F14
F15
public static final Key F15
F16
public static final Key F16
F17
public static final Key F17
F18
public static final Key F18
F19
public static final Key F19
F20
public static final Key F20
F21
public static final Key F21
F22
public static final Key F22
F23
public static final Key F23
F24
public static final Key F24
GRAVE_ACCENT
public static final Key GRAVE_ACCENT
NUM_1
public static final Key NUM_1
NUM_2
public static final Key NUM_2
NUM_3
public static final Key NUM_3
NUM_4
public static final Key NUM_4
NUM_5
public static final Key NUM_5
NUM_6
public static final Key NUM_6
NUM_7
public static final Key NUM_7
NUM_8
public static final Key NUM_8
NUM_9
public static final Key NUM_9
NUM_0
public static final Key NUM_0
MINUS
public static final Key MINUS
EQUALS_SIGN
public static final Key EQUALS_SIGN
BACKSPACE
public static final Key BACKSPACE
TAB
public static final Key TAB
A
public static final Key A
B
public static final Key B
C
public static final Key C
D
public static final Key D
E
public static final Key E
F
public static final Key F
G
public static final Key G
H
public static final Key H
I
public static final Key I
J
public static final Key J
K
public static final Key K
L
public static final Key L
M
public static final Key M
N
public static final Key N
O
public static final Key O
P
public static final Key P
Q
public static final Key Q
R
public static final Key R
S
public static final Key S
T
public static final Key T
U
public static final Key U
V
public static final Key V
W
public static final Key W
X
public static final Key X
Y
public static final Key Y
Z
public static final Key Z
SQUARE_BRACKET_LEFT
public static final Key SQUARE_BRACKET_LEFT
SQUARE_BRACKET_RIGHT
public static final Key SQUARE_BRACKET_RIGHT
BACKSLASH
public static final Key BACKSLASH
CAPSLOCK
public static final Key CAPSLOCK
SEMICOLON
public static final Key SEMICOLON
APOSTROPHE
public static final Key APOSTROPHE
ENTER
public static final Key ENTER
SHIFT
public static final Key SHIFT
COMMA
public static final Key COMMA
PERIOD
public static final Key PERIOD
SLASH
public static final Key SLASH
CTRL
public static final Key CTRL
ALT
public static final Key ALT
SPACE
public static final Key SPACE
ARROW_UP
public static final Key ARROW_UP
ARROW_DOWN
public static final Key ARROW_DOWN
ARROW_LEFT
public static final Key ARROW_LEFT
ARROW_RIGHT
public static final Key ARROW_RIGHT
Method Details
values
public static Key [] values ()
Returns an array containing the constants of this enum class, in
the order they are declared.
Returns:
an array containing the constants of this enum class, in the order they are declared
valueOf
Returns the enum constant of this class with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this class. (Extraneous whitespace characters are
not permitted.)
Parameters:
name
- the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException
- if this enum class has no constant with the specified name
NullPointerException
- if the argument is null