public enum ControlKeyType extends java.lang.Enum<ControlKeyType>
Enum Constant and Description |
---|
ARROW_DOWN |
ARROW_LEFT |
ARROW_RIGHT |
ARROW_UP |
DELETE |
END |
ENTER |
ESCAPE |
F1 |
F10 |
F11 |
F12 |
F2 |
F3 |
F4 |
F5 |
F6 |
F7 |
F8 |
F9 |
PASTE |
PIC_1 |
PIC_2 |
POS1 |
REMOVE |
SPACE |
TAB |
Modifier and Type | Method and Description |
---|---|
static ControlKeyType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ControlKeyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ControlKeyType TAB
public static final ControlKeyType ENTER
public static final ControlKeyType DELETE
public static final ControlKeyType ESCAPE
public static final ControlKeyType SPACE
public static final ControlKeyType ARROW_UP
public static final ControlKeyType ARROW_DOWN
public static final ControlKeyType ARROW_LEFT
public static final ControlKeyType ARROW_RIGHT
public static final ControlKeyType PASTE
public static final ControlKeyType REMOVE
public static final ControlKeyType POS1
public static final ControlKeyType END
public static final ControlKeyType PIC_1
public static final ControlKeyType PIC_2
public static final ControlKeyType F1
public static final ControlKeyType F2
public static final ControlKeyType F3
public static final ControlKeyType F4
public static final ControlKeyType F5
public static final ControlKeyType F6
public static final ControlKeyType F7
public static final ControlKeyType F8
public static final ControlKeyType F9
public static final ControlKeyType F10
public static final ControlKeyType F11
public static final ControlKeyType F12
public static ControlKeyType[] values()
for (ControlKeyType c : ControlKeyType.values()) System.out.println(c);
public static ControlKeyType 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