Record Class DatabaseFunctionSignatureKey

java.lang.Object
java.lang.Record
io.trino.plugin.hive.metastore.DatabaseFunctionSignatureKey

public record DatabaseFunctionSignatureKey(String databaseName, String functionName, String signatureToken) extends Record
  • Constructor Details

    • DatabaseFunctionSignatureKey

      public DatabaseFunctionSignatureKey(String databaseName, String functionName, String signatureToken)
      Creates an instance of a DatabaseFunctionSignatureKey record class.
      Parameters:
      databaseName - the value for the databaseName record component
      functionName - the value for the functionName record component
      signatureToken - the value for the signatureToken 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. All components in this record class are compared with Objects::equals(Object,Object).
      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.
    • databaseName

      public String databaseName()
      Returns the value of the databaseName record component.
      Returns:
      the value of the databaseName record component
    • functionName

      public String functionName()
      Returns the value of the functionName record component.
      Returns:
      the value of the functionName record component
    • signatureToken

      public String signatureToken()
      Returns the value of the signatureToken record component.
      Returns:
      the value of the signatureToken record component