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

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

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


Enum Constant Summary
ABILITY
           
AFFBEHAV
           
ARMOR
           
ATTACK
           
BASEGOLD
           
CLASS
           
DAMAGE
           
DESCRIPTION
           
DISPLAY
           
DISPOSITION
           
IMG
           
ISDROPPABLE
           
ISGETTABLE
           
ISREADABLE
           
ISREMOVABLE
           
LEVEL
           
MATERIAL
           
NAME
           
PROPERWORN
           
READABLETEXT
           
SECRET
           
USES
           
WEIGHT
           
WORNAND
           
 
Method Summary
static GenericBuilder.GenItemCode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static GenericBuilder.GenItemCode[] 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.GenItemCode CLASS

USES

public static final GenericBuilder.GenItemCode USES

LEVEL

public static final GenericBuilder.GenItemCode LEVEL

ABILITY

public static final GenericBuilder.GenItemCode ABILITY

NAME

public static final GenericBuilder.GenItemCode NAME

DISPLAY

public static final GenericBuilder.GenItemCode DISPLAY

DESCRIPTION

public static final GenericBuilder.GenItemCode DESCRIPTION

SECRET

public static final GenericBuilder.GenItemCode SECRET

PROPERWORN

public static final GenericBuilder.GenItemCode PROPERWORN

WORNAND

public static final GenericBuilder.GenItemCode WORNAND

BASEGOLD

public static final GenericBuilder.GenItemCode BASEGOLD

ISREADABLE

public static final GenericBuilder.GenItemCode ISREADABLE

ISGETTABLE

public static final GenericBuilder.GenItemCode ISGETTABLE

ISDROPPABLE

public static final GenericBuilder.GenItemCode ISDROPPABLE

ISREMOVABLE

public static final GenericBuilder.GenItemCode ISREMOVABLE

MATERIAL

public static final GenericBuilder.GenItemCode MATERIAL

AFFBEHAV

public static final GenericBuilder.GenItemCode AFFBEHAV

DISPOSITION

public static final GenericBuilder.GenItemCode DISPOSITION

WEIGHT

public static final GenericBuilder.GenItemCode WEIGHT

ARMOR

public static final GenericBuilder.GenItemCode ARMOR

DAMAGE

public static final GenericBuilder.GenItemCode DAMAGE

ATTACK

public static final GenericBuilder.GenItemCode ATTACK

READABLETEXT

public static final GenericBuilder.GenItemCode READABLETEXT

IMG

public static final GenericBuilder.GenItemCode IMG
Method Detail

values

public static GenericBuilder.GenItemCode[] 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.GenItemCode c : GenericBuilder.GenItemCode.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.GenItemCode 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