com.planet_ink.coffee_mud.Libraries.interfaces
Enum QuestManager.QMCommand

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

public static enum QuestManager.QMCommand
extends java.lang.Enum<QuestManager.QMCommand>


Enum Constant Summary
$ABILITY
           
$AREA
           
$CHOOSE
           
$EXISTING_QUEST_NAME
           
$EXPRESSION
           
$FACTION
           
$HIDDEN
           
$ITEMXML
           
$ITEMXML_ONEORMORE
           
$LABEL
           
$LONG_STRING
           
$MOBXML
           
$MOBXML_ONEORMORE
           
$NAME
           
$ROOMID
           
$STRING
           
$TIMEEXPRESSION
           
$TITLE
           
$UNIQUE_QUEST_NAME
           
$ZAPPERMASK
           
 
Method Summary
static QuestManager.QMCommand valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static QuestManager.QMCommand[] 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

$TITLE

public static final QuestManager.QMCommand $TITLE

$LABEL

public static final QuestManager.QMCommand $LABEL

$EXPRESSION

public static final QuestManager.QMCommand $EXPRESSION

$UNIQUE_QUEST_NAME

public static final QuestManager.QMCommand $UNIQUE_QUEST_NAME

$CHOOSE

public static final QuestManager.QMCommand $CHOOSE

$ITEMXML

public static final QuestManager.QMCommand $ITEMXML

$STRING

public static final QuestManager.QMCommand $STRING

$ROOMID

public static final QuestManager.QMCommand $ROOMID

$AREA

public static final QuestManager.QMCommand $AREA

$MOBXML

public static final QuestManager.QMCommand $MOBXML

$NAME

public static final QuestManager.QMCommand $NAME

$LONG_STRING

public static final QuestManager.QMCommand $LONG_STRING

$MOBXML_ONEORMORE

public static final QuestManager.QMCommand $MOBXML_ONEORMORE

$ITEMXML_ONEORMORE

public static final QuestManager.QMCommand $ITEMXML_ONEORMORE

$ZAPPERMASK

public static final QuestManager.QMCommand $ZAPPERMASK

$ABILITY

public static final QuestManager.QMCommand $ABILITY

$EXISTING_QUEST_NAME

public static final QuestManager.QMCommand $EXISTING_QUEST_NAME

$HIDDEN

public static final QuestManager.QMCommand $HIDDEN

$FACTION

public static final QuestManager.QMCommand $FACTION

$TIMEEXPRESSION

public static final QuestManager.QMCommand $TIMEEXPRESSION
Method Detail

values

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

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

valueOf

public static QuestManager.QMCommand 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