Package net.minecraftforge.common.world
Enum Class BiomeModifier.Phase
- All Implemented Interfaces:
- Serializable,- Comparable<BiomeModifier.Phase>,- Constable
- Enclosing interface:
- BiomeModifier
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionAdditional features, mob spawns, etc.Catch-all for anything that needs to run after standard phases.Catch-all for anything that needs to run before standard phases.Alteration of values such as climate or colors.Removal of features, mob spawns, etc.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionstatic BiomeModifier.PhaseReturns the enum constant of this class with the specified name.static BiomeModifier.Phase[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
BEFORE_EVERYTHINGCatch-all for anything that needs to run before standard phases.
- 
ADDAdditional features, mob spawns, etc.
- 
REMOVERemoval of features, mob spawns, etc.
- 
MODIFYAlteration of values such as climate or colors.
- 
AFTER_EVERYTHINGCatch-all for anything that needs to run after standard phases.
 
- 
- 
Constructor Details- 
Phaseprivate Phase()
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
 
- 
valueOfReturns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum class has no constant with the specified name
- NullPointerException- if the argument is null
 
 
-