Record Class MaterialRules.AboveYMaterialCondition
java.lang.Object
java.lang.Record
net.minecraft.world.gen.surfacebuilder.MaterialRules.AboveYMaterialCondition
- Record Components:
- anchor-
- surfaceDepthMultiplier-
- addStoneDepth-
- All Implemented Interfaces:
- Function<MaterialRules.MaterialRuleContext,,- MaterialRules.BooleanSupplier> - MaterialRules.MaterialCondition
- Enclosing class:
- MaterialRules
private static record MaterialRules.AboveYMaterialCondition(YOffset anchor, int surfaceDepthMultiplier, boolean addStoneDepth)
extends Record
implements MaterialRules.MaterialCondition
- Mappings:
- Namespace - Name - named - net/minecraft/world/gen/surfacebuilder/MaterialRules$AboveYMaterialCondition- intermediary - net/minecraft/class_6686$class_6722- official - edk$aa- named - anchor- intermediary - comp_220- official - a- named - surfaceDepthMultiplier- intermediary - comp_221- official - c- named - addStoneDepth- intermediary - comp_222- official - d
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final booleanThe field for theaddStoneDepthrecord component.private final YOffsetThe field for theanchorrecord component.(package private) static final CodecHolder<MaterialRules.AboveYMaterialCondition> private final intThe field for thesurfaceDepthMultiplierrecord component.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionbooleanReturns the value of theaddStoneDepthrecord component.anchor()Returns the value of theanchorrecord component.apply(MaterialRules.MaterialRuleContext materialRuleContext) CodecHolder<? extends MaterialRules.MaterialCondition> codec()final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intReturns the value of thesurfaceDepthMultiplierrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
anchorThe field for theanchorrecord component.
- 
surfaceDepthMultiplierprivate final int surfaceDepthMultiplierThe field for thesurfaceDepthMultiplierrecord component.
- 
addStoneDepthprivate final boolean addStoneDepthThe field for theaddStoneDepthrecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/world/gen/surfacebuilder/MaterialRules$AboveYMaterialCondition;CODEC:Lnet/minecraft/util/dynamic/CodecHolder;- intermediary - field_35266- Lnet/minecraft/class_6686$class_6722;field_35266:Lnet/minecraft/class_7243;- official - e- Ledk$aa;e:Lays;
 
 
- 
- 
Constructor Details- 
AboveYMaterialConditionAboveYMaterialCondition(YOffset yOffset, int int2, boolean bool) 
 
- 
- 
Method Details- 
codec- Specified by:
- codecin interface- MaterialRules.MaterialCondition
- Mappings:
- Namespace - Name - Mixin selector - named - codec- Lnet/minecraft/world/gen/surfacebuilder/MaterialRules$MaterialCondition;codec()Lnet/minecraft/util/dynamic/CodecHolder;- intermediary - method_39064- Lnet/minecraft/class_6686$class_6693;method_39064()Lnet/minecraft/class_7243;- official - a- Ledk$f;a()Lays;
 
- 
apply- Specified by:
- applyin interface- Function<MaterialRules.MaterialRuleContext,- MaterialRules.BooleanSupplier> 
- Mappings:
- Namespace - Name - Mixin selector - named - apply- Lnet/minecraft/world/gen/surfacebuilder/MaterialRules$AboveYMaterialCondition;apply(Lnet/minecraft/world/gen/surfacebuilder/MaterialRules$MaterialRuleContext;)Lnet/minecraft/world/gen/surfacebuilder/MaterialRules$BooleanSupplier;- intermediary - method_39100- Lnet/minecraft/class_6686$class_6722;method_39100(Lnet/minecraft/class_6686$class_6694;)Lnet/minecraft/class_6686$class_6692;- official - a- Ledk$aa;a(Ledk$g;)Ledk$e;
 
- 
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='.
- 
anchorReturns the value of theanchorrecord component.- Returns:
- the value of the anchorrecord component
 
- 
surfaceDepthMultiplierpublic int surfaceDepthMultiplier()Returns the value of thesurfaceDepthMultiplierrecord component.- Returns:
- the value of the surfaceDepthMultiplierrecord component
 
- 
addStoneDepthpublic boolean addStoneDepth()Returns the value of theaddStoneDepthrecord component.- Returns:
- the value of the addStoneDepthrecord component
 
 
-