Uses of Class
liquibase.database.structure.Table

Packages that use Table
liquibase.database   
liquibase.database.structure   
liquibase.diff   
liquibase.snapshot   
liquibase.snapshot.jvm   
 

Uses of Table in liquibase.database
 

Methods in liquibase.database that return Table
 Table AbstractDatabase.getTable(String schemaName, String tableName)
           
 

Uses of Table in liquibase.database.structure
 

Methods in liquibase.database.structure that return Table
 Table ForeignKey.getForeignKeyTable()
           
 Table ForeignKey.getPrimaryKeyTable()
           
 Table Column.getTable()
           
 Table Index.getTable()
           
 Table PrimaryKey.getTable()
           
 Table UniqueConstraint.getTable()
           
 Table Table.setDatabase(Database database)
           
 Table Table.setRemarks(String remarks)
           
 Table Table.setSchema(String schema)
           
 

Methods in liquibase.database.structure with parameters of type Table
 int Table.compareTo(Table o)
           
 void ForeignKey.setForeignKeyTable(Table foreignKeyTable)
           
 void ForeignKey.setPrimaryKeyTable(Table primaryKeyTable)
           
 Column Column.setTable(Table table)
           
 void Index.setTable(Table table)
           
 void PrimaryKey.setTable(Table table)
           
 void UniqueConstraint.setTable(Table table)
           
 

Uses of Table in liquibase.diff
 

Methods in liquibase.diff that return types with arguments of type Table
 SortedSet<Table> DiffResult.getMissingTables()
           
 SortedSet<Table> DiffResult.getUnexpectedTables()
           
 

Methods in liquibase.diff with parameters of type Table
 void DiffResult.addMissingTable(Table table)
           
 void DiffResult.addUnexpectedTable(Table table)
           
 

Uses of Table in liquibase.snapshot
 

Methods in liquibase.snapshot that return Table
 Table DatabaseSnapshot.getDatabaseChangeLogLockTable()
           
 Table DatabaseSnapshotGenerator.getDatabaseChangeLogLockTable(Database database)
           
 Table DatabaseSnapshot.getDatabaseChangeLogTable()
           
 Table DatabaseSnapshotGenerator.getDatabaseChangeLogTable(Database database)
           
 Table DatabaseSnapshot.getTable(String tableName)
           
 Table DatabaseSnapshotGenerator.getTable(String schemaName, String tableName, Database database)
           
 

Methods in liquibase.snapshot that return types with arguments of type Table
 Set<Table> DatabaseSnapshot.getTables()
           
 

Methods in liquibase.snapshot with parameters of type Table
 void DatabaseSnapshot.setDatabaseChangeLogLockTable(Table table)
           
 void DatabaseSnapshot.setDatabaseChangeLogTable(Table table)
           
 

Uses of Table in liquibase.snapshot.jvm
 

Methods in liquibase.snapshot.jvm that return Table
 Table JdbcDatabaseSnapshotGenerator.getDatabaseChangeLogLockTable(Database database)
           
 Table JdbcDatabaseSnapshotGenerator.getDatabaseChangeLogTable(Database database)
           
 Table H2DatabaseSnapshotGenerator.getTable(String schemaName, String tableName, Database database)
           
 Table JdbcDatabaseSnapshotGenerator.getTable(String schemaName, String tableName, Database database)
           
 



Copyright © 2012 Liquibase.org. All Rights Reserved.