Record Class BlockFluidEntry

java.lang.Object
java.lang.Record
com.hypixel.hytale.server.worldgen.util.BlockFluidEntry

@Deprecated public record BlockFluidEntry(int blockId, int rotation, int fluidId) extends Record
Deprecated.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final int
    Deprecated.
    The field for the blockId record component.
    static final BlockFluidEntry
    Deprecated.
     
    static final BlockFluidEntry[]
    Deprecated.
     
    private final int
    Deprecated.
    The field for the fluidId record component.
    private final int
    Deprecated.
    The field for the rotation record component.
  • Constructor Summary

    Constructors
    Constructor
    Description
    BlockFluidEntry(int blockId, int rotation, int fluidId)
    Deprecated.
    Creates an instance of a BlockFluidEntry record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Deprecated.
    Returns the value of the blockId record component.
    final boolean
    Deprecated.
    Indicates whether some other object is "equal to" this one.
    int
    Deprecated.
    Returns the value of the fluidId record component.
    final int
    Deprecated.
    Returns a hash code value for this object.
    int
    Deprecated.
    Returns the value of the rotation record component.
    final String
    Deprecated.
    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

    • blockId

      private final int blockId
      Deprecated.
      The field for the blockId record component.
    • rotation

      private final int rotation
      Deprecated.
      The field for the rotation record component.
    • fluidId

      private final int fluidId
      Deprecated.
      The field for the fluidId record component.
    • EMPTY_ARRAY

      public static final BlockFluidEntry[] EMPTY_ARRAY
      Deprecated.
    • EMPTY

      public static final BlockFluidEntry EMPTY
      Deprecated.
  • Constructor Details

    • BlockFluidEntry

      public BlockFluidEntry(int blockId, int rotation, int fluidId)
      Deprecated.
      Creates an instance of a BlockFluidEntry record class.
      Parameters:
      blockId - the value for the blockId record component
      rotation - the value for the rotation record component
      fluidId - the value for the fluidId record component
  • Method Details

    • toString

      public final String toString()
      Deprecated.
      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()
      Deprecated.
      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)
      Deprecated.
      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.
    • blockId

      public int blockId()
      Deprecated.
      Returns the value of the blockId record component.
      Returns:
      the value of the blockId record component
    • rotation

      public int rotation()
      Deprecated.
      Returns the value of the rotation record component.
      Returns:
      the value of the rotation record component
    • fluidId

      public int fluidId()
      Deprecated.
      Returns the value of the fluidId record component.
      Returns:
      the value of the fluidId record component