Record Class DensityFunctions.Clamp
java.lang.Object
java.lang.Record
net.minecraft.world.level.levelgen.DensityFunctions.Clamp
- All Implemented Interfaces:
DensityFunction
,DensityFunctions.PureTransformer
- Enclosing class:
- DensityFunctions
protected static record DensityFunctions.Clamp(DensityFunction input, double minValue, double maxValue)
extends Record
implements DensityFunctions.PureTransformer
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.world.level.levelgen.DensityFunction
DensityFunction.ContextProvider, DensityFunction.FunctionContext, DensityFunction.NoiseHolder, DensityFunction.SimpleFunction, DensityFunction.SinglePointContext, DensityFunction.Visitor
-
Field Summary
Modifier and TypeFieldDescriptionstatic final KeyDispatchDataCodec<DensityFunctions.Clamp>
private static final com.mojang.serialization.MapCodec<DensityFunctions.Clamp>
private final DensityFunction
The field for theinput
record component.private final double
The field for themaxValue
record component.private final double
The field for theminValue
record component.Fields inherited from interface net.minecraft.world.level.levelgen.DensityFunction
DIRECT_CODEC, HOLDER_HELPER_CODEC
-
Constructor Summary
ModifierConstructorDescriptionprotected
Clamp
(DensityFunction input, double minValue, double maxValue) Creates an instance of aClamp
record class. -
Method Summary
Modifier and TypeMethodDescriptionKeyDispatchDataCodec<? extends DensityFunction>
codec()
final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.input()
Returns the value of theinput
record component.mapAll
(DensityFunction.Visitor p_208599_) double
maxValue()
Returns the value of themaxValue
record component.double
minValue()
Returns the value of theminValue
record component.final String
toString()
Returns a string representation of this record class.double
transform
(double p_208595_) Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.world.level.levelgen.DensityFunction
abs, clamp, cube, halfNegative, quarterNegative, square, squeeze
Methods inherited from interface net.minecraft.world.level.levelgen.DensityFunctions.PureTransformer
compute, fillArray
-
Field Details
-
input
The field for theinput
record component. -
minValue
private final double minValueThe field for theminValue
record component. -
maxValue
private final double maxValueThe field for themaxValue
record component. -
DATA_CODEC
-
CODEC
-
-
Constructor Details
-
Clamp
Creates an instance of aClamp
record class.- Parameters:
input
- the value for theinput
record componentminValue
- the value for theminValue
record componentmaxValue
- the value for themaxValue
record component
-
-
Method Details
-
transform
public double transform(double p_208595_) - Specified by:
transform
in interfaceDensityFunctions.PureTransformer
-
mapAll
- Specified by:
mapAll
in interfaceDensityFunction
-
codec
- Specified by:
codec
in interfaceDensityFunction
-
input
Returns the value of theinput
record component.- Specified by:
input
in interfaceDensityFunctions.PureTransformer
- Returns:
- the value of the
input
record component
-
minValue
public double minValue()Returns the value of theminValue
record component.- Specified by:
minValue
in interfaceDensityFunction
- Returns:
- the value of the
minValue
record component
-
maxValue
public double maxValue()Returns the value of themaxValue
record component.- Specified by:
maxValue
in interfaceDensityFunction
- Returns:
- the value of the
maxValue
record component
-
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='.
-