org.lee.mugen.core.command
Enum Key

java.lang.Object
  extended by java.lang.Enum<Key>
      extended by 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

Enum Constant Summary
a
           
b
           
B
           
c
           
D
           
DB
           
DF
           
F
           
U
           
UB
           
UF
           
x
           
y
           
z
           
 
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
 

Enum Constant Detail

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
Field Detail

bit

public final int bit

desc

public final java.lang.String desc
Method Detail

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)