public enum HIDKeyboardType extends Enum<HIDKeyboardType>
Enum Constant and Description |
---|
PCAT_Belgium
Belgium keyboard
|
PCAT_French
French keyboard
|
PCAT_German
German keyboard
|
PCAT_Hungarian
Hungarian keyboard
|
PCAT_Italy
Italian keyboard
|
PCAT_Norwegian
Norwegian keyboard
|
PCAT_Portuguese
Portuguese keyboard
|
PCAT_Spanish
Spanish keyboard
|
PCAT_Swedish
Swedish keyboard
|
PCAT_Turkish
Turkish keyboard
|
PCAT_UK
UK keyboard
|
PCAT_US
US keyboard
|
PS55A01_2_Japanese
Japanese keyboard
|
Modifier and Type | Method and Description |
---|---|
static HIDKeyboardType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HIDKeyboardType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HIDKeyboardType PCAT_US
public static final HIDKeyboardType PCAT_French
public static final HIDKeyboardType PCAT_German
public static final HIDKeyboardType PCAT_Italy
public static final HIDKeyboardType PCAT_Swedish
public static final HIDKeyboardType PCAT_Norwegian
public static final HIDKeyboardType PCAT_UK
public static final HIDKeyboardType PCAT_Belgium
public static final HIDKeyboardType PCAT_Spanish
public static final HIDKeyboardType PCAT_Portuguese
public static final HIDKeyboardType PS55A01_2_Japanese
public static final HIDKeyboardType PCAT_Turkish
public static final HIDKeyboardType PCAT_Hungarian
public static HIDKeyboardType[] values()
for (HIDKeyboardType c : HIDKeyboardType.values()) System.out.println(c);
public static HIDKeyboardType 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 null