@Deprecated public enum ModificationPhase extends Enum<ModificationPhase>
This will result in the following order:
Experimental feature, may be removed or changed without further notice.
Enum Constant and Description |
---|
ADDITIONS
Deprecated.
The appropriate phase for enriching biomes by adding to them without relying on
other information in the biome, or removing other features.
|
POST_PROCESSING
Deprecated.
The appropriate phase for modifiers that perform wide-reaching biome postprocessing.
|
REMOVALS
Deprecated.
The appropriate phase for modifiers that remove features or other aspects of biomes (i.e.
|
REPLACEMENTS
Deprecated.
The appropriate phase for modifiers that replace existing features with modified features.
|
Modifier and Type | Method and Description |
---|---|
static ModificationPhase |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static ModificationPhase[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModificationPhase ADDITIONS
Examples: New ores, new vegetation, new structures
public static final ModificationPhase REMOVALS
Examples: Remove iron ore from plains, remove ghasts
public static final ModificationPhase REPLACEMENTS
Examples: Replace mineshafts with biome-specific mineshafts
public static final ModificationPhase POST_PROCESSING
Examples: Mods that allow modpack authors to customize world generation, changing biome properties (i.e. category) that other mods rely on.
public static ModificationPhase[] values()
for (ModificationPhase c : ModificationPhase.values()) System.out.println(c);
public static ModificationPhase 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