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 net.minecraft.world.level.levelgen.feature.configurations.FeatureConfiguration
NONE -
Constructor Summary
ConstructorsConstructorDescriptionSimpleBlockConfiguration(BlockStateProvider p_161155_) SimpleBlockConfiguration(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 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
-
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
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 '=='. -
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
-