Enum Constant and Description |
---|
ARMORY |
BLACKSMITH |
BOSS_EXIT |
CRYPT |
ENTRANCE |
EXIT |
GARDEN |
LABORATORY |
LIBRARY |
MAGIC_WELL |
NULL |
PASSAGE |
PIT |
POOL |
PRISON_BOSS_EXIT |
RAT_KING |
SEWER_BOSS_EXIT |
SHOP |
STANDARD |
STATUE |
STORAGE |
TRAPS |
TREASURY |
TUNNEL |
VAULT |
WAREHOUSE |
WEAK_FLOOR |
Modifier and Type | Method and Description |
---|---|
void |
paint(Level level,
Room room) |
static Room.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Room.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Room.Type NULL
public static final Room.Type STANDARD
public static final Room.Type ENTRANCE
public static final Room.Type EXIT
public static final Room.Type SEWER_BOSS_EXIT
public static final Room.Type PRISON_BOSS_EXIT
public static final Room.Type BOSS_EXIT
public static final Room.Type TUNNEL
public static final Room.Type PASSAGE
public static final Room.Type SHOP
public static final Room.Type BLACKSMITH
public static final Room.Type TREASURY
public static final Room.Type ARMORY
public static final Room.Type LIBRARY
public static final Room.Type LABORATORY
public static final Room.Type VAULT
public static final Room.Type TRAPS
public static final Room.Type STORAGE
public static final Room.Type MAGIC_WELL
public static final Room.Type GARDEN
public static final Room.Type CRYPT
public static final Room.Type STATUE
public static final Room.Type POOL
public static final Room.Type RAT_KING
public static final Room.Type WEAK_FLOOR
public static final Room.Type PIT
public static final Room.Type WAREHOUSE
public static Room.Type[] values()
for (Room.Type c : Room.Type.values()) System.out.println(c);
public static Room.Type valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null