Record Class BlockColumnConfiguration
java.lang.Object
java.lang.Record
net.minecraft.world.level.levelgen.feature.configurations.BlockColumnConfiguration
- All Implemented Interfaces:
FeatureConfiguration
public record BlockColumnConfiguration(List<BlockColumnConfiguration.Layer> layers, Direction direction, BlockPredicate allowedPlacement, boolean prioritizeTip)
extends Record
implements FeatureConfiguration
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final BlockPredicateThe field for theallowedPlacementrecord component.static final com.mojang.serialization.Codec<BlockColumnConfiguration> private final DirectionThe field for thedirectionrecord component.private final List<BlockColumnConfiguration.Layer> The field for thelayersrecord component.private final booleanThe field for theprioritizeTiprecord component.Fields inherited from interface net.minecraft.world.level.levelgen.feature.configurations.FeatureConfiguration
NONE -
Constructor Summary
ConstructorsConstructorDescriptionBlockColumnConfiguration(List<BlockColumnConfiguration.Layer> layers, Direction direction, BlockPredicate allowedPlacement, boolean prioritizeTip) Creates an instance of aBlockColumnConfigurationrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theallowedPlacementrecord component.Returns the value of thedirectionrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.layer(IntProvider p_191219_, BlockStateProvider p_191220_) layers()Returns the value of thelayersrecord component.booleanReturns the value of theprioritizeTiprecord component.static BlockColumnConfigurationsimple(IntProvider p_191225_, BlockStateProvider p_191226_) final StringtoString()Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.world.level.levelgen.feature.configurations.FeatureConfiguration
getFeatures
-
Field Details
-
layers
The field for thelayersrecord component. -
direction
The field for thedirectionrecord component. -
allowedPlacement
The field for theallowedPlacementrecord component. -
prioritizeTip
private final boolean prioritizeTipThe field for theprioritizeTiprecord component. -
CODEC
-
-
Constructor Details
-
BlockColumnConfiguration
public BlockColumnConfiguration(List<BlockColumnConfiguration.Layer> layers, Direction direction, BlockPredicate allowedPlacement, boolean prioritizeTip) Creates an instance of aBlockColumnConfigurationrecord class.- Parameters:
layers- the value for thelayersrecord componentdirection- the value for thedirectionrecord componentallowedPlacement- the value for theallowedPlacementrecord componentprioritizeTip- the value for theprioritizeTiprecord component
-
-
Method Details
-
layer
public static BlockColumnConfiguration.Layer layer(IntProvider p_191219_, BlockStateProvider p_191220_) -
simple
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
layers
Returns the value of thelayersrecord component.- Returns:
- the value of the
layersrecord component
-
direction
Returns the value of thedirectionrecord component.- Returns:
- the value of the
directionrecord component
-
allowedPlacement
Returns the value of theallowedPlacementrecord component.- Returns:
- the value of the
allowedPlacementrecord component
-
prioritizeTip
public boolean prioritizeTip()Returns the value of theprioritizeTiprecord component.- Returns:
- the value of the
prioritizeTiprecord component
-