public static enum KeyAPI.Symbol extends java.lang.Enum<KeyAPI.Symbol>
| Enum Constant and Description |
|---|
APOSTROPHE |
BACKSLASH |
COMMA |
EQUAL |
GRAVE |
LEFT_BRACKET |
MINUS |
PERIOD |
RIGHT_BRACKET |
SEMICOLON |
SLASH |
SPACE |
WORLD_1 |
WORLD_2 |
| Modifier and Type | Method and Description |
|---|---|
static KeyAPI.Symbol |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static KeyAPI.Symbol[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyAPI.Symbol APOSTROPHE
public static final KeyAPI.Symbol BACKSLASH
public static final KeyAPI.Symbol COMMA
public static final KeyAPI.Symbol EQUAL
public static final KeyAPI.Symbol GRAVE
public static final KeyAPI.Symbol LEFT_BRACKET
public static final KeyAPI.Symbol MINUS
public static final KeyAPI.Symbol PERIOD
public static final KeyAPI.Symbol RIGHT_BRACKET
public static final KeyAPI.Symbol SEMICOLON
public static final KeyAPI.Symbol SLASH
public static final KeyAPI.Symbol SPACE
public static final KeyAPI.Symbol WORLD_1
public static final KeyAPI.Symbol WORLD_2
public static KeyAPI.Symbol[] values()
for (KeyAPI.Symbol c : KeyAPI.Symbol.values()) System.out.println(c);
public static KeyAPI.Symbol 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