Record Class FlowingFluid.BlockStatePairKey

java.lang.Object
java.lang.Record
net.minecraft.world.level.material.FlowingFluid.BlockStatePairKey
Enclosing class:
FlowingFluid

static record FlowingFluid.BlockStatePairKey(BlockState first, BlockState second, Direction direction) extends Record
  • Field Details

    • first

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

      private final BlockState second
      The field for the second record component.
    • direction

      private final Direction direction
      The field for the direction record component.
  • Constructor Details

    • BlockStatePairKey

      BlockStatePairKey(BlockState first, BlockState second, Direction direction)
      Creates an instance of a BlockStatePairKey record class.
      Parameters:
      first - the value for the first record component
      second - the value for the second record component
      direction - the value for the direction record component
  • Method Details

    • equals

      public boolean equals(Object p_368747_)
      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_368747_ - the object with which to compare
      Returns:
      true if this object is the same as the p_368747_ 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 BlockState first()
      Returns the value of the first record component.
      Returns:
      the value of the first record component
    • second

      public BlockState second()
      Returns the value of the second record component.
      Returns:
      the value of the second record component
    • direction

      public Direction direction()
      Returns the value of the direction record component.
      Returns:
      the value of the direction record component