Record Class SimpleBlockConfiguration
java.lang.Object
java.lang.Record
net.minecraft.world.level.levelgen.feature.configurations.SimpleBlockConfiguration
- All Implemented Interfaces:
FeatureConfiguration
public record SimpleBlockConfiguration(BlockStateProvider toPlace, boolean scheduleTick)
extends Record
implements FeatureConfiguration
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<SimpleBlockConfiguration> private final booleanThe field for thescheduleTickrecord component.private final BlockStateProviderThe field for thetoPlacerecord component.Fields inherited from interface FeatureConfiguration
NONE -
Constructor Summary
ConstructorsConstructorDescriptionSimpleBlockConfiguration(BlockStateProvider toPlace, boolean scheduleTick) Creates an instance of aSimpleBlockConfigurationrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanReturns the value of thescheduleTickrecord component.toPlace()Returns the value of thetoPlacerecord component.final StringtoString()Returns a string representation of this record class.Methods inherited from interface FeatureConfiguration
getFeatures
-
Field Details
-
toPlace
The field for thetoPlacerecord component. -
scheduleTick
private final boolean scheduleTickThe field for thescheduleTickrecord component. -
CODEC
-
-
Constructor Details
-
SimpleBlockConfiguration
-
SimpleBlockConfiguration
Creates an instance of aSimpleBlockConfigurationrecord class.- Parameters:
toPlace- the value for thetoPlacerecord componentscheduleTick- the value for thescheduleTickrecord component
-
-
Method Details
-
toString
-
hashCode
-
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 thecomparemethod from their corresponding wrapper classes. -
toPlace
Returns the value of thetoPlacerecord component.- Returns:
- the value of the
toPlacerecord component
-
scheduleTick
public boolean scheduleTick()Returns the value of thescheduleTickrecord component.- Returns:
- the value of the
scheduleTickrecord component
-