public enum KeyType extends Enum<KeyType>
| Enum Constant and Description |
|---|
_0 |
_1 |
_2 |
_3 |
_4 |
_5 |
_6 |
_7 |
_8 |
_9 |
a |
A |
b |
B |
BACKSPACE |
c |
C |
d |
D |
DELETE |
DOWN |
e |
E |
ENTER |
f |
F |
g |
G |
h |
H |
i |
I |
j |
J |
k |
K |
l |
L |
LEFT |
m |
M |
n |
N |
o |
O |
p |
P |
q |
Q |
r |
R |
RIGHT |
s |
S |
SPACE |
t |
T |
u |
U |
UNKNOWN |
UP |
v |
V |
w |
W |
x |
X |
y |
Y |
z |
Z |
| Modifier and Type | Method and Description |
|---|---|
(package private) static KeyType |
map(Operation operation,
int[] sequence)
.
|
static KeyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KeyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static KeyType[] values()
for (KeyType c : KeyType.values()) System.out.println(c);
public static KeyType 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 nullCopyright © 2014 eXo Platform SAS. All Rights Reserved.