public static enum AdvancedKeyboard.Property extends java.lang.Enum<AdvancedKeyboard.Property>
| Enum Constant and Description |
|---|
AUTHOR
Author of the installed keyboard configuration.
|
DATE
Creation date of the installed keyboard configuration.
|
DESCRIPTION
Description of the installed keyboard configuration.
|
NAME
Name of the installed keyboard configuration.
|
REVISION
Revision of the installed keyboard configuration.
|
VERSION
Version of the installed keyboard configuration.
|
| Modifier and Type | Method and Description |
|---|---|
static AdvancedKeyboard.Property |
fromInt(int value)
Retrieves the corresponding Property value from a valid integer.
|
int |
toInt()
Converts the property to its integer corresponding value.
|
static AdvancedKeyboard.Property |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AdvancedKeyboard.Property[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdvancedKeyboard.Property NAME
String parameter.public static final AdvancedKeyboard.Property DESCRIPTION
String parameter.public static final AdvancedKeyboard.Property AUTHOR
String parameter.public static final AdvancedKeyboard.Property VERSION
int parameter.public static final AdvancedKeyboard.Property REVISION
int parameter.public static final AdvancedKeyboard.Property DATE
String parameter, with format
HH:mm:ss yyyy-MM-dd (for details see
SimpleDateFormat).public static AdvancedKeyboard.Property[] values()
for (AdvancedKeyboard.Property c : AdvancedKeyboard.Property.values()) System.out.println(c);
public static AdvancedKeyboard.Property 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 nullpublic int toInt()
public static AdvancedKeyboard.Property fromInt(int value)
value - Integer to use as input in the conversion.