Record Class NBufferBundle.MemoryReport.GridEntry

java.lang.Object
java.lang.Record
com.hypixel.hytale.builtin.hytalegenerator.newsystem.bufferbundle.NBufferBundle.MemoryReport.GridEntry
Enclosing class:
NBufferBundle.MemoryReport

public static record NBufferBundle.MemoryReport.GridEntry(MemInstrument.Report report, int bufferCount, @Nonnull NBufferType bufferType) extends Record
  • Field Details

    • report

      private final MemInstrument.Report report
      The field for the report record component.
    • bufferCount

      private final int bufferCount
      The field for the bufferCount record component.
    • bufferType

      @Nonnull private final NBufferType bufferType
      The field for the bufferType record component.
  • Constructor Details

    • GridEntry

      public GridEntry(MemInstrument.Report report, int bufferCount, @Nonnull NBufferType bufferType)
      Creates an instance of a GridEntry record class.
      Parameters:
      report - the value for the report record component
      bufferCount - the value for the bufferCount record component
      bufferType - the value for the bufferType record component
  • Method Details

    • toString

      @Nonnull public String toString(int indentation)
    • 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. Reference components are compared with Objects::equals(Object,Object); primitive components 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.
    • report

      public MemInstrument.Report report()
      Returns the value of the report record component.
      Returns:
      the value of the report record component
    • bufferCount

      public int bufferCount()
      Returns the value of the bufferCount record component.
      Returns:
      the value of the bufferCount record component
    • bufferType

      @Nonnull public NBufferType bufferType()
      Returns the value of the bufferType record component.
      Returns:
      the value of the bufferType record component