public static enum KeyAPI.Modifier extends java.lang.Enum<KeyAPI.Modifier>
| Modifier and Type | Method and Description |
|---|---|
static KeyAPI.Modifier |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static KeyAPI.Modifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyAPI.Modifier ALT
public static final KeyAPI.Modifier CTRL
public static final KeyAPI.Modifier SHIFT
public static final KeyAPI.Modifier NONE
public static KeyAPI.Modifier[] values()
for (KeyAPI.Modifier c : KeyAPI.Modifier.values()) System.out.println(c);
public static KeyAPI.Modifier 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