Record Class PluginDatabaseManager.DatabaseStats

java.lang.Object
java.lang.Record
group.worldstandard.pudel.api.database.PluginDatabaseManager.DatabaseStats
Record Components:
pluginId - the identifier of the plugin the statistics belong to
schemaName - the name of the database schema
tableCount - the number of tables in the schema
totalRows - the total number of rows across all tables
schemaVersion - the version of the schema definition
Enclosing interface:
PluginDatabaseManager

public static record PluginDatabaseManager.DatabaseStats(String pluginId, String schemaName, int tableCount, long totalRows, int schemaVersion) extends Record
Database statistics.
  • Constructor Details

    • DatabaseStats

      public DatabaseStats(String pluginId, String schemaName, int tableCount, long totalRows, int schemaVersion)
      Creates an instance of a DatabaseStats record class.
      Parameters:
      pluginId - the value for the pluginId record component
      schemaName - the value for the schemaName record component
      tableCount - the value for the tableCount record component
      totalRows - the value for the totalRows record component
      schemaVersion - the value for the schemaVersion record component
  • Method Details

    • 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 the compare method from their corresponding wrapper classes.
      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.
    • pluginId

      public String pluginId()
      Returns the value of the pluginId record component.
      Returns:
      the value of the pluginId record component
    • schemaName

      public String schemaName()
      Returns the value of the schemaName record component.
      Returns:
      the value of the schemaName record component
    • tableCount

      public int tableCount()
      Returns the value of the tableCount record component.
      Returns:
      the value of the tableCount record component
    • totalRows

      public long totalRows()
      Returns the value of the totalRows record component.
      Returns:
      the value of the totalRows record component
    • schemaVersion

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