Enum Constant and Description |
---|
ANTIGRAVITY |
APIARY |
AQUARIUM |
ARBORETUM |
BAKER |
BAMBOO |
BEDROOM |
BIRDCAGE |
CHEMISTRY |
EMPTY |
FARM |
GRAVITY |
GREENHOUSE |
HARMONY |
HUTCH |
IGLOO |
KITCHEN |
LAZARUS |
LIBRARY |
MUSHROOM |
PASSAGE |
POOL |
RAIL |
RENDERER |
SHELL |
SMELTER |
STABLE |
STALL |
TRENZALORE |
VAULT |
VILLAGE |
WOOD |
WORKSHOP |
ZERO |
Modifier and Type | Method and Description |
---|---|
static ROOM |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ROOM[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ROOM ANTIGRAVITY
public static final ROOM APIARY
public static final ROOM AQUARIUM
public static final ROOM ARBORETUM
public static final ROOM BAKER
public static final ROOM BAMBOO
public static final ROOM BEDROOM
public static final ROOM BIRDCAGE
public static final ROOM CHEMISTRY
public static final ROOM EMPTY
public static final ROOM FARM
public static final ROOM GRAVITY
public static final ROOM GREENHOUSE
public static final ROOM HARMONY
public static final ROOM HUTCH
public static final ROOM IGLOO
public static final ROOM KITCHEN
public static final ROOM LAZARUS
public static final ROOM LIBRARY
public static final ROOM MUSHROOM
public static final ROOM PASSAGE
public static final ROOM POOL
public static final ROOM RAIL
public static final ROOM RENDERER
public static final ROOM SHELL
public static final ROOM SMELTER
public static final ROOM STABLE
public static final ROOM STALL
public static final ROOM TRENZALORE
public static final ROOM VAULT
public static final ROOM VILLAGE
public static final ROOM WOOD
public static final ROOM WORKSHOP
public static final ROOM ZERO
public static ROOM[] values()
for (ROOM c : ROOM.values()) System.out.println(c);
public static ROOM 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