Record Class BlendedNoise.FbmSet
java.lang.Object
java.lang.Record
net.minecraft.world.level.levelgen.synth.BlendedNoise.FbmSet
- Enclosing class:
BlendedNoise
public static record BlendedNoise.FbmSet(NoiseStack minLimitNoise, NoiseStack maxLimitNoise, NoiseStack mainNoise)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final NoiseStackThe field for themainNoiserecord component.private final NoiseStackThe field for themaxLimitNoiserecord component.private final NoiseStackThe field for theminLimitNoiserecord component. -
Constructor Summary
ConstructorsConstructorDescriptionFbmSet(NoiseStack minLimitNoise, NoiseStack maxLimitNoise, NoiseStack mainNoise) Creates an instance of aFbmSetrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of themainNoiserecord component.Returns the value of themaxLimitNoiserecord component.Returns the value of theminLimitNoiserecord component.voidprivate voidparityConfigString(StringBuilder output, NoiseStack noise) final StringtoString()Returns a string representation of this record class.
-
Field Details
-
minLimitNoise
The field for theminLimitNoiserecord component. -
maxLimitNoise
The field for themaxLimitNoiserecord component. -
mainNoise
The field for themainNoiserecord component.
-
-
Constructor Details
-
FbmSet
Creates an instance of aFbmSetrecord class.- Parameters:
minLimitNoise- the value for theminLimitNoiserecord componentmaxLimitNoise- the value for themaxLimitNoiserecord componentmainNoise- the value for themainNoiserecord component
-
-
Method Details
-
parityConfigString
-
parityConfigString
-
toString
-
hashCode
-
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). -
minLimitNoise
Returns the value of theminLimitNoiserecord component.- Returns:
- the value of the
minLimitNoiserecord component
-
maxLimitNoise
Returns the value of themaxLimitNoiserecord component.- Returns:
- the value of the
maxLimitNoiserecord component
-
mainNoise
Returns the value of themainNoiserecord component.- Returns:
- the value of the
mainNoiserecord component
-