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 SummaryNested classes/interfaces inherited from interface net.minecraft.world.level.levelgen.DensityFunctionDensityFunction.ContextProvider, DensityFunction.FunctionContext, DensityFunction.NoiseHolder, DensityFunction.SimpleFunction, DensityFunction.SinglePointContext, DensityFunction.Visitor
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final KeyDispatchDataCodec<DensityFunctions.Clamp>private static final com.mojang.serialization.MapCodec<DensityFunctions.Clamp>private final DensityFunctionThe field for theinputrecord component.private final doubleThe field for themaxValuerecord component.private final doubleThe field for theminValuerecord component.Fields inherited from interface net.minecraft.world.level.levelgen.DensityFunctionDIRECT_CODEC, HOLDER_HELPER_CODEC
- 
Constructor SummaryConstructorsModifierConstructorDescriptionprotectedClamp(DensityFunction input, double minValue, double maxValue) Creates an instance of aClamprecord class.
- 
Method SummaryModifier and TypeMethodDescriptionKeyDispatchDataCodec<? extends DensityFunction>codec()final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.input()Returns the value of theinputrecord component.mapAll(DensityFunction.Visitor p_208599_) doublemaxValue()Returns the value of themaxValuerecord component.doubleminValue()Returns the value of theminValuerecord component.final StringtoString()Returns a string representation of this record class.doubletransform(double p_208595_) Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.world.level.levelgen.DensityFunctionabs, clamp, cube, halfNegative, quarterNegative, square, squeezeMethods inherited from interface net.minecraft.world.level.levelgen.DensityFunctions.PureTransformercompute, fillArray
- 
Field Details- 
inputThe field for theinputrecord component.
- 
minValueprivate final double minValueThe field for theminValuerecord component.
- 
maxValueprivate final double maxValueThe field for themaxValuerecord component.
- 
DATA_CODEC
- 
CODEC
 
- 
- 
Constructor Details- 
ClampCreates an instance of aClamprecord class.- Parameters:
- input- the value for the- inputrecord component
- minValue- the value for the- minValuerecord component
- maxValue- the value for the- maxValuerecord component
 
 
- 
- 
Method Details- 
transformpublic double transform(double p_208595_) - Specified by:
- transformin interface- DensityFunctions.PureTransformer
 
- 
mapAll- Specified by:
- mapAllin interface- DensityFunction
 
- 
codec- Specified by:
- codecin interface- DensityFunction
 
- 
inputReturns the value of theinputrecord component.- Specified by:
- inputin interface- DensityFunctions.PureTransformer
- Returns:
- the value of the inputrecord component
 
- 
minValuepublic double minValue()Returns the value of theminValuerecord component.- Specified by:
- minValuein interface- DensityFunction
- Returns:
- the value of the minValuerecord component
 
- 
maxValuepublic double maxValue()Returns the value of themaxValuerecord component.- Specified by:
- maxValuein interface- DensityFunction
- Returns:
- the value of the maxValuerecord component
 
- 
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 '=='.
 
-