com.planet_ink.coffee_mud.Libraries.interfaces
Enum GenericBuilder.GenMOBCode

java.lang.Object
  extended by java.lang.Enum<GenericBuilder.GenMOBCode>
      extended by com.planet_ink.coffee_mud.Libraries.interfaces.GenericBuilder.GenMOBCode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<GenericBuilder.GenMOBCode>
Enclosing interface:
GenericBuilder

public static enum GenericBuilder.GenMOBCode
extends java.lang.Enum<GenericBuilder.GenMOBCode>


Enum Constant Summary
ABILITY
           
ABLES
           
AFFBEHAV
           
ALIGNMENT
           
ARMOR
           
ATTACK
           
CLASS
           
DAMAGE
           
DESCRIPTION
           
DISPLAY
           
DISPOSITION
           
EXPS
           
FACTIONS
           
IMG
           
INVENTORY
           
LEVEL
           
MONEY
           
NAME
           
RACE
           
SENSES
           
SPEED
           
TATTS
           
VARMONEY
           
 
Method Summary
static GenericBuilder.GenMOBCode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static GenericBuilder.GenMOBCode[] 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

CLASS

public static final GenericBuilder.GenMOBCode CLASS

RACE

public static final GenericBuilder.GenMOBCode RACE

LEVEL

public static final GenericBuilder.GenMOBCode LEVEL

ABILITY

public static final GenericBuilder.GenMOBCode ABILITY

NAME

public static final GenericBuilder.GenMOBCode NAME

DISPLAY

public static final GenericBuilder.GenMOBCode DISPLAY

DESCRIPTION

public static final GenericBuilder.GenMOBCode DESCRIPTION

MONEY

public static final GenericBuilder.GenMOBCode MONEY

ALIGNMENT

public static final GenericBuilder.GenMOBCode ALIGNMENT

DISPOSITION

public static final GenericBuilder.GenMOBCode DISPOSITION

SENSES

public static final GenericBuilder.GenMOBCode SENSES

ARMOR

public static final GenericBuilder.GenMOBCode ARMOR

DAMAGE

public static final GenericBuilder.GenMOBCode DAMAGE

ATTACK

public static final GenericBuilder.GenMOBCode ATTACK

SPEED

public static final GenericBuilder.GenMOBCode SPEED

AFFBEHAV

public static final GenericBuilder.GenMOBCode AFFBEHAV

ABLES

public static final GenericBuilder.GenMOBCode ABLES

INVENTORY

public static final GenericBuilder.GenMOBCode INVENTORY

TATTS

public static final GenericBuilder.GenMOBCode TATTS

EXPS

public static final GenericBuilder.GenMOBCode EXPS

IMG

public static final GenericBuilder.GenMOBCode IMG

FACTIONS

public static final GenericBuilder.GenMOBCode FACTIONS

VARMONEY

public static final GenericBuilder.GenMOBCode VARMONEY
Method Detail

values

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

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

valueOf

public static GenericBuilder.GenMOBCode 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