Package io.trino.metadata
Class TableSchema
- java.lang.Object
-
- io.trino.metadata.TableSchema
-
public final class TableSchema extends Object
-
-
Constructor Summary
Constructors Constructor Description TableSchema(CatalogName catalogName, ConnectorTableSchema tableSchema)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CatalogNamegetCatalogName()ColumnSchemagetColumn(String name)List<ColumnSchema>getColumns()QualifiedObjectNamegetQualifiedName()SchemaTableNamegetTable()ConnectorTableSchemagetTableSchema()
-
-
-
Constructor Detail
-
TableSchema
public TableSchema(CatalogName catalogName, ConnectorTableSchema tableSchema)
-
-
Method Detail
-
getQualifiedName
public QualifiedObjectName getQualifiedName()
-
getCatalogName
public CatalogName getCatalogName()
-
getTableSchema
public ConnectorTableSchema getTableSchema()
-
getTable
public SchemaTableName getTable()
-
getColumns
public List<ColumnSchema> getColumns()
-
getColumn
public ColumnSchema getColumn(String name)
-
-