org.lee.mugen.core.command
Enum Key
java.lang.Object
java.lang.Enum<Key>
org.lee.mugen.core.command.Key
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<Key>
public enum Key
- extends java.lang.Enum<Key>
Definition of key enum
- Author:
- Dr Wong
Field Summary |
int |
bit
|
java.lang.String |
desc
|
Method Summary |
static Key |
getKey(int bit)
|
static Key |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Key[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
B
public static final Key B
D
public static final Key D
F
public static final Key F
U
public static final Key U
DB
public static final Key DB
DF
public static final Key DF
UF
public static final Key UF
UB
public static final Key UB
a
public static final Key a
b
public static final Key b
c
public static final Key c
x
public static final Key x
y
public static final Key y
z
public static final Key z
bit
public final int bit
desc
public final java.lang.String desc
values
public static Key[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (Key c : Key.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Key valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
getKey
public static Key getKey(int bit)