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 dol$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 Summary
Modifier and TypeFieldDescriptionprivate final BlockStateProvider
The field for thebarrier
record component.static final com.mojang.serialization.Codec<LakeFeature.Config>
private final BlockStateProvider
The field for thefluid
record component.Fields inherited from interface net.minecraft.world.gen.feature.FeatureConfig
DEFAULT
-
Constructor Summary
ConstructorDescriptionConfig
(BlockStateProvider blockStateProvider, BlockStateProvider blockStateProvider2) -
Method Summary
Modifier and TypeMethodDescriptionbarrier()
Returns the value of thebarrier
record component.final boolean
Indicates whether some other object is "equal to" this one.fluid()
Returns the value of thefluid
record component.final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.world.gen.feature.FeatureConfig
getDecoratedFeatures
-
Field Details
-
fluid
The field for thefluid
record component. -
barrier
The field for thebarrier
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector official a
Ldol$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
-
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 thefluid
record component.- Returns:
- the value of the
fluid
record component
-
barrier
Returns the value of thebarrier
record component.- Returns:
- the value of the
barrier
record component
-