Record Class LakeFeature.Configuration
java.lang.Object
java.lang.Record
net.minecraft.world.level.levelgen.feature.LakeFeature.Configuration
- All Implemented Interfaces:
FeatureConfiguration
- Enclosing class:
LakeFeature
public static record LakeFeature.Configuration(BlockStateProvider fluid, BlockStateProvider barrier)
extends Record
implements FeatureConfiguration
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final BlockStateProviderThe field for thebarrierrecord component.static final com.mojang.serialization.Codec<LakeFeature.Configuration> private final BlockStateProviderThe field for thefluidrecord component.Fields inherited from interface net.minecraft.world.level.levelgen.feature.configurations.FeatureConfiguration
NONE -
Constructor Summary
ConstructorsConstructorDescriptionConfiguration(BlockStateProvider fluid, BlockStateProvider barrier) Creates an instance of aConfigurationrecord class. -
Method Summary
Modifier and TypeMethodDescriptionbarrier()Returns the value of thebarrierrecord component.final booleanIndicates whether some other object is "equal to" this one.fluid()Returns the value of thefluidrecord component.final inthashCode()Returns a hash code value for this object.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
-
fluid
The field for thefluidrecord component. -
barrier
The field for thebarrierrecord component. -
CODEC
-
-
Constructor Details
-
Configuration
Creates an instance of aConfigurationrecord class.- Parameters:
fluid- the value for thefluidrecord componentbarrier- the value for thebarrierrecord 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. All components in this record class are compared withObjects::equals(Object,Object). -
fluid
Returns the value of thefluidrecord component.- Returns:
- the value of the
fluidrecord component
-
barrier
Returns the value of thebarrierrecord component.- Returns:
- the value of the
barrierrecord component
-