jurpe.world
Enum LocationType
java.lang.Object
java.lang.Enum<LocationType>
jurpe.world.LocationType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<LocationType>
public enum LocationType
- extends java.lang.Enum<LocationType>
Type of a location on a RPG map
Method Summary |
static LocationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static LocationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they're declared. |
Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
UNKNOWN
public static final LocationType UNKNOWN
WALL
public static final LocationType WALL
CORRIDOR
public static final LocationType CORRIDOR
SHOP
public static final LocationType SHOP
TRAINING
public static final LocationType TRAINING
STAIRSUP
public static final LocationType STAIRSUP
STAIRSDOWN
public static final LocationType STAIRSDOWN
TREE
public static final LocationType TREE
HOUSE
public static final LocationType HOUSE
INN
public static final LocationType INN
SIGN
public static final LocationType SIGN
values
public static final LocationType[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(LocationType c : LocationType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static LocationType 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