public static enum BiomeManager.BiomeType extends java.lang.Enum<BiomeManager.BiomeType>
| Modifier and Type | Method and Description |
|---|---|
static BiomeManager.BiomeType |
getType(java.lang.String name) |
static BiomeManager.BiomeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BiomeManager.BiomeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BiomeManager.BiomeType DESERT
public static final BiomeManager.BiomeType WARM
public static final BiomeManager.BiomeType COOL
public static final BiomeManager.BiomeType ICY
public static BiomeManager.BiomeType[] values()
for (BiomeManager.BiomeType c : BiomeManager.BiomeType.values()) System.out.println(c);
public static BiomeManager.BiomeType 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 nullpublic static BiomeManager.BiomeType getType(java.lang.String name)