Enum Constant and Description |
---|
AMPLIFIED |
BUFFET |
CUSTOM |
CUSTOMIZED |
DEFAULT |
END |
FLAT |
LARGE_BIOMES |
NETHER |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getDisplayName() |
static Generator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Generator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Generator DEFAULT
public static final Generator FLAT
public static final Generator LARGE_BIOMES
public static final Generator AMPLIFIED
public static final Generator BUFFET
public static final Generator CUSTOM
public static final Generator CUSTOMIZED
public static final Generator UNKNOWN
public static final Generator NETHER
public static final Generator END
public static Generator[] values()
for (Generator c : Generator.values()) System.out.println(c);
public static Generator 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 java.lang.String getDisplayName()