Package net.minecraft.world.gen.feature
Record Class LakeFeature.Config
java.lang.Object
java.lang.Record
net.minecraft.world.gen.feature.LakeFeature.Config
- Record Components:
- fluid-
- barrier-
- All Implemented Interfaces:
- FeatureConfig
- Enclosing class:
- LakeFeature
public static record LakeFeature.Config(BlockStateProvider fluid, BlockStateProvider barrier)
extends Record
implements FeatureConfig
- Mappings:
- Namespace - Name - official - dld$a- intermediary - net/minecraft/class_3085$class_6788- named - net/minecraft/world/gen/feature/LakeFeature$Config- official - b- intermediary - comp_285- named - fluid- official - c- intermediary - comp_286- named - barrier
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final BlockStateProviderThe field for thebarrierrecord component.static final com.mojang.serialization.Codec<LakeFeature.Config>private final BlockStateProviderThe field for thefluidrecord component.Fields inherited from interface net.minecraft.world.gen.feature.FeatureConfigDEFAULT
- 
Constructor SummaryConstructorsConstructorDescriptionConfig(BlockStateProvider blockStateProvider, BlockStateProvider blockStateProvider2) 
- 
Method SummaryModifier 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.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.world.gen.feature.FeatureConfiggetDecoratedFeatures
- 
Field Details- 
fluidThe field for thefluidrecord component.
- 
barrierThe field for thebarrierrecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - official - a- Ldld$a;a:Lcom/mojang/serialization/Codec;- intermediary - field_35706- Lnet/minecraft/class_3085$class_6788;field_35706:Lcom/mojang/serialization/Codec;- named - CODEC- Lnet/minecraft/world/gen/feature/LakeFeature$Config;CODEC:Lcom/mojang/serialization/Codec;
 
 
- 
- 
Constructor Details- 
Config
 
- 
- 
Method Details- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
fluidReturns the value of thefluidrecord component.- Returns:
- the value of the fluidrecord component
 
- 
barrierReturns the value of thebarrierrecord component.- Returns:
- the value of the barrierrecord component
 
 
-