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
    Modifier and Type
    Field
    Description
    private final int
    The field for the blockX record component.
    private final int
    The field for the blockY record component.
    private final int
    The field for the blockZ record component.
  • Constructor Summary

    Constructors
    Constructor
    Description
    SinglePointContext(int blockX, int blockY, int blockZ)
    Creates an instance of a SinglePointContext record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Returns the value of the blockX record component.
    int
    Returns the value of the blockY record component.
    int
    Returns the value of the blockZ record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    final String
    Returns a string representation of this record class.

    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.FunctionContext

    getBlender
  • Field Details

    • blockX

      private final int blockX
      The field for the blockX record component.
    • blockY

      private final int blockY
      The field for the blockY record component.
    • blockZ

      private final int blockZ
      The field for the blockZ record component.
  • Constructor Details

    • SinglePointContext

      public SinglePointContext(int blockX, int blockY, int blockZ)
      Creates an instance of a SinglePointContext record class.
      Parameters:
      blockX - the value for the blockX record component
      blockY - the value for the blockY record component
      blockZ - the value for the blockZ record component
  • Method Details

    • blockX

      public int blockX()
      Returns the value of the blockX record component.
      Specified by:
      blockX in interface DensityFunction.FunctionContext
      Returns:
      the value of the blockX record component
    • blockY

      public int blockY()
      Returns the value of the blockY record component.
      Specified by:
      blockY in interface DensityFunction.FunctionContext
      Returns:
      the value of the blockY record component
    • blockZ

      public int blockZ()
      Returns the value of the blockZ record component.
      Specified by:
      blockZ in interface DensityFunction.FunctionContext
      Returns:
      the value of the blockZ record component
    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 '=='.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.