public enum DigitPosition extends Enum<DigitPosition>
Enum Constant and Description |
---|
LowerRow
QWERTY or QWERTZ keyboard
|
Normal
Digit position depends on the [Shift] key or [Shift Lock] settings
|
UpperRow
AZERTY keyboard
|
Modifier and Type | Method and Description |
---|---|
static DigitPosition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DigitPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DigitPosition Normal
public static final DigitPosition LowerRow
public static final DigitPosition UpperRow
public static DigitPosition[] values()
for (DigitPosition c : DigitPosition.values()) System.out.println(c);
public static DigitPosition 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