public enum KeyboardMode extends java.lang.Enum<KeyboardMode>
Enum Constant and Description |
---|
Custom
Custom layout.
|
Default
Default layout.
|
Extended
Extended layout.
|
Modifier and Type | Method and Description |
---|---|
static KeyboardMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static KeyboardMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyboardMode Default
public static final KeyboardMode Extended
public static final KeyboardMode Custom
TemplateLayout
property to define keyboard's common view.public static KeyboardMode[] values()
for (KeyboardMode c : KeyboardMode.values()) System.out.println(c);
public static KeyboardMode 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