org.lee.mugen.sprite.character
Enum SpriteCns.Type

java.lang.Object
  extended by java.lang.Enum<SpriteCns.Type>
      extended by org.lee.mugen.sprite.character.SpriteCns.Type
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SpriteCns.Type>
Enclosing class:
SpriteCns

public static enum SpriteCns.Type
extends java.lang.Enum<SpriteCns.Type>


Enum Constant Summary
A
           
C
           
I
           
L
           
S
           
U
           
 
Field Summary
static java.lang.String ACCESS
           
 
Method Summary
 int getBit()
           
 java.lang.String getDescription()
           
 void setBit(int bit)
           
 void setDescription(java.lang.String description)
           
static SpriteCns.Type valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SpriteCns.Type[] 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

S

public static final SpriteCns.Type S

C

public static final SpriteCns.Type C

I

public static final SpriteCns.Type I

L

public static final SpriteCns.Type L

A

public static final SpriteCns.Type A

U

public static final SpriteCns.Type U
Field Detail

ACCESS

public static final java.lang.String ACCESS
See Also:
Constant Field Values
Method Detail

values

public static SpriteCns.Type[] 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 (SpriteCns.Type c : SpriteCns.Type.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SpriteCns.Type 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

getBit

public int getBit()

setBit

public void setBit(int bit)

getDescription

public java.lang.String getDescription()

setDescription

public void setDescription(java.lang.String description)