com.planet_ink.coffee_mud.core.intermud.cm1.commands
Enum Listen.STATTYPE
java.lang.Object
java.lang.Enum<Listen.STATTYPE>
com.planet_ink.coffee_mud.core.intermud.cm1.commands.Listen.STATTYPE
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<Listen.STATTYPE>
- Enclosing class:
- Listen
protected static enum Listen.STATTYPE
- extends java.lang.Enum<Listen.STATTYPE>
|
Method Summary |
static Listen.STATTYPE |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Listen.STATTYPE[] |
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 |
CHANNEL
public static final Listen.STATTYPE CHANNEL
LOGINS
public static final Listen.STATTYPE LOGINS
MOB
public static final Listen.STATTYPE MOB
ROOM
public static final Listen.STATTYPE ROOM
PLAYER
public static final Listen.STATTYPE PLAYER
ABILITY
public static final Listen.STATTYPE ABILITY
ITEM
public static final Listen.STATTYPE ITEM
TARGET
public static final Listen.STATTYPE TARGET
SOURCE
public static final Listen.STATTYPE SOURCE
TOOL
public static final Listen.STATTYPE TOOL
TARGETCODE
public static final Listen.STATTYPE TARGETCODE
SOURCECODE
public static final Listen.STATTYPE SOURCECODE
OTHERSCODE
public static final Listen.STATTYPE OTHERSCODE
AREA
public static final Listen.STATTYPE AREA
TARGETMASK
public static final Listen.STATTYPE TARGETMASK
SOURCEMASK
public static final Listen.STATTYPE SOURCEMASK
OTHERSMASK
public static final Listen.STATTYPE OTHERSMASK
values
public static Listen.STATTYPE[] 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 (Listen.STATTYPE c : Listen.STATTYPE.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Listen.STATTYPE 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