static enum BiomeLayers.Category extends Enum<BiomeLayers.Category>
Enum Constant and Description |
---|
BADLANDS_PLATEAU |
BEACH |
DESERT |
EXTREME_HILLS |
FOREST |
ICY |
JUNGLE |
MESA |
MUSHROOM |
NONE |
OCEAN |
PLAINS |
RIVER |
SAVANNA |
SWAMP |
TAIGA |
Modifier and Type | Method and Description |
---|---|
static BiomeLayers.Category |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BiomeLayers.Category[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BiomeLayers.Category NONE
public static final BiomeLayers.Category TAIGA
public static final BiomeLayers.Category EXTREME_HILLS
public static final BiomeLayers.Category JUNGLE
public static final BiomeLayers.Category MESA
public static final BiomeLayers.Category BADLANDS_PLATEAU
public static final BiomeLayers.Category PLAINS
public static final BiomeLayers.Category SAVANNA
public static final BiomeLayers.Category ICY
public static final BiomeLayers.Category BEACH
public static final BiomeLayers.Category FOREST
public static final BiomeLayers.Category OCEAN
public static final BiomeLayers.Category DESERT
public static final BiomeLayers.Category RIVER
public static final BiomeLayers.Category SWAMP
public static final BiomeLayers.Category MUSHROOM
public static BiomeLayers.Category[] values()
for (BiomeLayers.Category c : BiomeLayers.Category.values()) System.out.println(c);
public static BiomeLayers.Category valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null