Record Class TableMetadata
java.lang.Object
java.lang.Record
io.trino.metadata.TableMetadata
public record TableMetadata(CatalogName catalogName, ConnectorTableMetadata metadata)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionTableMetadata(CatalogName catalogName, ConnectorTableMetadata metadata) Creates an instance of aTableMetadatarecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecatalogNamerecord component.columns()final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.metadata()Returns the value of themetadatarecord component.table()final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
TableMetadata
Creates an instance of aTableMetadatarecord class.- Parameters:
catalogName- the value for thecatalogNamerecord componentmetadata- the value for themetadatarecord component
-
-
Method Details
-
qualifiedName
-
table
-
columns
-
column
-
toString
-
hashCode
-
equals
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 withObjects::equals(Object,Object). -
catalogName
Returns the value of thecatalogNamerecord component.- Returns:
- the value of the
catalogNamerecord component
-
metadata
Returns the value of themetadatarecord component.- Returns:
- the value of the
metadatarecord component
-