Enum Constant and Description |
---|
Down
The key is pressed.
|
Up
The key is released.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static KeyState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static KeyState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyState Down
public static final KeyState Up
public static KeyState[] values()
for (KeyState c : KeyState.values()) System.out.println(c);
public static KeyState 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 int getValue()