Record Class DensityFunction.SinglePointContext
java.lang.Object
java.lang.Record
net.minecraft.world.level.levelgen.DensityFunction.SinglePointContext
- All Implemented Interfaces:
DensityFunction.FunctionContext
- Enclosing interface:
DensityFunction
public static record DensityFunction.SinglePointContext(int blockX, int blockY, int blockZ)
extends Record
implements DensityFunction.FunctionContext
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionSinglePointContext(int blockX, int blockY, int blockZ) Creates an instance of aSinglePointContextrecord class. -
Method Summary
Modifier and TypeMethodDescriptionintblockX()Returns the value of theblockXrecord component.intblockY()Returns the value of theblockYrecord component.intblockZ()Returns the value of theblockZrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.world.level.levelgen.DensityFunction.FunctionContext
getBlender
-
Field Details
-
blockX
private final int blockXThe field for theblockXrecord component. -
blockY
private final int blockYThe field for theblockYrecord component. -
blockZ
private final int blockZThe field for theblockZrecord component.
-
-
Constructor Details
-
SinglePointContext
public SinglePointContext(int blockX, int blockY, int blockZ) Creates an instance of aSinglePointContextrecord class.- Parameters:
blockX- the value for theblockXrecord componentblockY- the value for theblockYrecord componentblockZ- the value for theblockZrecord component
-
-
Method Details
-
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. All components in this record class are compared with '=='. -
blockX
public int blockX()Returns the value of theblockXrecord component.- Specified by:
blockXin interfaceDensityFunction.FunctionContext- Returns:
- the value of the
blockXrecord component
-
blockY
public int blockY()Returns the value of theblockYrecord component.- Specified by:
blockYin interfaceDensityFunction.FunctionContext- Returns:
- the value of the
blockYrecord component
-
blockZ
public int blockZ()Returns the value of theblockZrecord component.- Specified by:
blockZin interfaceDensityFunction.FunctionContext- Returns:
- the value of the
blockZrecord component
-