public enum KeyboardType extends java.lang.Enum<KeyboardType>
KeyboardType enumeration lists keyboard type codes.| Enum Constant and Description |
|---|
ALPHA_NUMERIC
Alpha Numeric keyboard
|
E_BUSINESS
E-Business keyboard
|
FULL_ALPHA_NUMERIC
Full Alpha Numeric keyboard
|
NONE
Unit has no keyboard attached
|
NUMERIC
Numeric keyboard
|
QWERTY
Qwerty keyboard
|
| Modifier and Type | Method and Description |
|---|---|
static KeyboardType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static KeyboardType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyboardType NONE
public static final KeyboardType NUMERIC
public static final KeyboardType ALPHA_NUMERIC
public static final KeyboardType QWERTY
public static final KeyboardType E_BUSINESS
public static final KeyboardType FULL_ALPHA_NUMERIC
public static KeyboardType[] values()
for (KeyboardType c : KeyboardType.values()) System.out.println(c);
public static KeyboardType 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