public enum KeycodeSet extends java.lang.Enum<KeycodeSet>
Enum Constant and Description |
---|
ATSET1
AT set 1 key codes
|
ATSET2
AT set 2 key codes
|
ATSET3
AT set 3 key codes
|
LINUX
Linux key code set.
|
OSX
Apple OS-X virtual key codes
|
RFB
Key code set as used by GTK-VNC and QEMU
|
USB
Key code set as defined by the USB HID specification
|
WIN32
Microsoft Windows virtual key code set
|
XT
IBM XT keyboard code set
|
XT_KBD |
Modifier and Type | Method and Description |
---|---|
static KeycodeSet |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static KeycodeSet[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeycodeSet LINUX
Defined in the linux/input.h header, this set of key codes is able to represent any scan code from any type of keyboard.
public static final KeycodeSet XT
public static final KeycodeSet ATSET1
public static final KeycodeSet ATSET2
public static final KeycodeSet ATSET3
public static final KeycodeSet OSX
public static final KeycodeSet XT_KBD
public static final KeycodeSet USB
public static final KeycodeSet WIN32
Reference: MSDN Virtual-Key Codes.
public static final KeycodeSet RFB
public static KeycodeSet[] values()
for (KeycodeSet c : KeycodeSet.values()) System.out.println(c);
public static KeycodeSet 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