Record Class Block.ShapePairKey

java.lang.Object
java.lang.Record
net.minecraft.world.level.block.Block.ShapePairKey
Enclosing class:
Block

static record Block.ShapePairKey(VoxelShape first, VoxelShape second) extends Record
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final VoxelShape
    The field for the first record component.
    private final VoxelShape
    The field for the second record component.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Creates an instance of a ShapePairKey record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    equals(Object p_364876_)
    Indicates whether some other object is "equal to" this one.
    Returns the value of the first record component.
    int
    Returns a hash code value for this object.
    Returns the value of the second record component.
    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
  • Field Details

    • first

      private final VoxelShape first
      The field for the first record component.
    • second

      private final VoxelShape second
      The field for the second record component.
  • Constructor Details

    • ShapePairKey

      ShapePairKey(VoxelShape first, VoxelShape second)
      Creates an instance of a ShapePairKey record class.
      Parameters:
      first - the value for the first record component
      second - the value for the second record component
  • Method Details

    • equals

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

      public 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
    • 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
    • first

      public VoxelShape first()
      Returns the value of the first record component.
      Returns:
      the value of the first record component
    • second

      public VoxelShape second()
      Returns the value of the second record component.
      Returns:
      the value of the second record component