Record Class MaterialRules.NoiseThresholdMaterialCondition
java.lang.Object
java.lang.Record
net.minecraft.world.gen.surfacebuilder.MaterialRules.NoiseThresholdMaterialCondition
- Record Components:
- noise-
- minThreshold-
- maxThreshold-
- All Implemented Interfaces:
- Function<MaterialRules.MaterialRuleContext,,- MaterialRules.BooleanSupplier> - MaterialRules.MaterialCondition
- Enclosing class:
- MaterialRules
private static record MaterialRules.NoiseThresholdMaterialCondition(RegistryKey<DoublePerlinNoiseSampler.NoiseParameters> noise, double minThreshold, double maxThreshold)
extends Record
implements MaterialRules.MaterialCondition
- Mappings:
- Namespace - Name - named - net/minecraft/world/gen/surfacebuilder/MaterialRules$NoiseThresholdMaterialCondition- intermediary - net/minecraft/class_6686$class_6703- official - edk$l- named - noise- intermediary - comp_201- official - a- named - minThreshold- intermediary - comp_202- official - c- named - maxThreshold- intermediary - comp_203- official - d
- 
Field SummaryFieldsModifier and TypeFieldDescription(package private) static final CodecHolder<MaterialRules.NoiseThresholdMaterialCondition> private final doubleThe field for themaxThresholdrecord component.private final doubleThe field for theminThresholdrecord component.private final RegistryKey<DoublePerlinNoiseSampler.NoiseParameters> The field for thenoiserecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionNoiseThresholdMaterialCondition(RegistryKey<DoublePerlinNoiseSampler.NoiseParameters> registryKey, double double2, double double3) 
- 
Method SummaryModifier and TypeMethodDescriptionapply(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.doubleReturns the value of themaxThresholdrecord component.doubleReturns the value of theminThresholdrecord component.noise()Returns the value of thenoiserecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
noiseThe field for thenoiserecord component.
- 
minThresholdprivate final double minThresholdThe field for theminThresholdrecord component.
- 
maxThresholdprivate final double maxThresholdThe field for themaxThresholdrecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/world/gen/surfacebuilder/MaterialRules$NoiseThresholdMaterialCondition;CODEC:Lnet/minecraft/util/dynamic/CodecHolder;- intermediary - field_35248- Lnet/minecraft/class_6686$class_6703;field_35248:Lnet/minecraft/class_7243;- official - e- Ledk$l;e:Lays;
 
 
- 
- 
Constructor Details- 
NoiseThresholdMaterialConditionNoiseThresholdMaterialCondition(RegistryKey<DoublePerlinNoiseSampler.NoiseParameters> registryKey, double double2, double double3) 
 
- 
- 
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$NoiseThresholdMaterialCondition;apply(Lnet/minecraft/world/gen/surfacebuilder/MaterialRules$MaterialRuleContext;)Lnet/minecraft/world/gen/surfacebuilder/MaterialRules$BooleanSupplier;- intermediary - method_39082- Lnet/minecraft/class_6686$class_6703;method_39082(Lnet/minecraft/class_6686$class_6694;)Lnet/minecraft/class_6686$class_6692;- official - a- Ledk$l;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 '=='.
- 
noiseReturns the value of thenoiserecord component.- Returns:
- the value of the noiserecord component
 
- 
minThresholdpublic double minThreshold()Returns the value of theminThresholdrecord component.- Returns:
- the value of the minThresholdrecord component
 
- 
maxThresholdpublic double maxThreshold()Returns the value of themaxThresholdrecord component.- Returns:
- the value of the maxThresholdrecord component
 
 
-