Uses of Interface
org.jooq.util.TableDefinition

Packages that use TableDefinition
org.jooq.util   
org.jooq.util.ansi   
org.jooq.util.db2   
org.jooq.util.derby   
org.jooq.util.h2   
org.jooq.util.ingres   
org.jooq.util.mysql   
org.jooq.util.oracle   
org.jooq.util.postgres   
org.jooq.util.sqlite   
org.jooq.util.sqlserver   
org.jooq.util.sybase   
 

Uses of TableDefinition in org.jooq.util
 

Subinterfaces of TableDefinition in org.jooq.util
 interface MasterDataTableDefinition
          A definition for a master data table
 

Classes in org.jooq.util that implement TableDefinition
 class AbstractTableDefinition
          A base implementation for table definitions.
 class DefaultMasterDataTableDefinition
           
 

Methods in org.jooq.util that return TableDefinition
 TableDefinition ForeignKeyDefinition.getKeyTable()
          The definition of the referencing table
 TableDefinition DefaultForeignKeyDefinition.getKeyTable()
           
 TableDefinition ForeignKeyDefinition.getKeyTableDefinition()
          Deprecated. - 1.5.9 - Use ForeignKeyDefinition.getKeyTable() instead
 TableDefinition DefaultForeignKeyDefinition.getKeyTableDefinition()
          Deprecated. 
 TableDefinition ForeignKeyDefinition.getReferencedTable()
          The definition of the referenced table.
 TableDefinition DefaultForeignKeyDefinition.getReferencedTable()
           
 TableDefinition UniqueKeyDefinition.getTable()
          The table holding this key
 TableDefinition DefaultUniqueKeyDefinition.getTable()
           
 TableDefinition DefaultColumnDefinition.getTable()
           
 TableDefinition ColumnDefinition.getTable()
          The column's owner table
 TableDefinition Database.getTable(String name)
          Get a table in this database by name
 TableDefinition AbstractDatabase.getTable(String name)
           
 

Methods in org.jooq.util that return types with arguments of type TableDefinition
 List<TableDefinition> Database.getTables()
          The tables contained in this database (for schema Database.getSchema())
 List<TableDefinition> AbstractDatabase.getTables()
           
protected abstract  List<TableDefinition> AbstractDatabase.getTables0()
          Retrieve ALL tables from the database.
 

Methods in org.jooq.util with parameters of type TableDefinition
 List<ForeignKeyDefinition> Relations.getForeignKeys(TableDefinition table)
          Get a list of foreign keys for a given table.
 List<ForeignKeyDefinition> DefaultRelations.getForeignKeys(TableDefinition table)
           
 List<UniqueKeyDefinition> Relations.getUniqueKeys(TableDefinition table)
          Get a list of referenced keys (primary or unique) for a given table.
 List<UniqueKeyDefinition> DefaultRelations.getUniqueKeys(TableDefinition table)
           
 

Constructors in org.jooq.util with parameters of type TableDefinition
DefaultColumnDefinition(TableDefinition table, String name, int position, DataTypeDefinition type, boolean isIdentity, String comment)
           
DefaultForeignKeyDefinition(Database database, String name, TableDefinition table, UniqueKeyDefinition uniqueKey)
           
DefaultMasterDataTableDefinition(TableDefinition delegate)
           
DefaultUniqueKeyDefinition(Database database, String name, TableDefinition table)
           
MasterDataTypeDefinition(TableDefinition table, DataTypeDefinition underlying)
           
 

Uses of TableDefinition in org.jooq.util.ansi
 

Classes in org.jooq.util.ansi that implement TableDefinition
 class ANSITableDefinition
           
 

Methods in org.jooq.util.ansi that return types with arguments of type TableDefinition
protected  List<TableDefinition> ANSIDatabase.getTables0()
          Retrieve ALL tables from the database.
 

Uses of TableDefinition in org.jooq.util.db2
 

Classes in org.jooq.util.db2 that implement TableDefinition
 class DB2TableDefinition
          DB2 table definition
 

Methods in org.jooq.util.db2 that return types with arguments of type TableDefinition
protected  List<TableDefinition> DB2Database.getTables0()
          Retrieve ALL tables from the database.
 

Uses of TableDefinition in org.jooq.util.derby
 

Classes in org.jooq.util.derby that implement TableDefinition
 class DerbyTableDefinition
           
 

Methods in org.jooq.util.derby that return types with arguments of type TableDefinition
protected  List<TableDefinition> DerbyDatabase.getTables0()
           
 

Uses of TableDefinition in org.jooq.util.h2
 

Classes in org.jooq.util.h2 that implement TableDefinition
 class H2TableDefinition
          H2 table definition
 

Methods in org.jooq.util.h2 that return types with arguments of type TableDefinition
protected  List<TableDefinition> H2Database.getTables0()
          Retrieve ALL tables from the database.
 

Uses of TableDefinition in org.jooq.util.ingres
 

Classes in org.jooq.util.ingres that implement TableDefinition
 class IngresTableDefinition
           
 

Methods in org.jooq.util.ingres that return types with arguments of type TableDefinition
protected  List<TableDefinition> IngresDatabase.getTables0()
          Retrieve ALL tables from the database.
 

Uses of TableDefinition in org.jooq.util.mysql
 

Classes in org.jooq.util.mysql that implement TableDefinition
 class MySQLTableDefinition
           
 

Methods in org.jooq.util.mysql that return types with arguments of type TableDefinition
protected  List<TableDefinition> MySQLDatabase.getTables0()
          Retrieve ALL tables from the database.
 

Uses of TableDefinition in org.jooq.util.oracle
 

Classes in org.jooq.util.oracle that implement TableDefinition
 class OracleTableDefinition
           
 

Methods in org.jooq.util.oracle that return types with arguments of type TableDefinition
protected  List<TableDefinition> OracleDatabase.getTables0()
          Retrieve ALL tables from the database.
 

Uses of TableDefinition in org.jooq.util.postgres
 

Classes in org.jooq.util.postgres that implement TableDefinition
 class PostgresTableDefinition
           
 

Methods in org.jooq.util.postgres that return types with arguments of type TableDefinition
protected  List<TableDefinition> PostgresDatabase.getTables0()
          Retrieve ALL tables from the database.
 

Uses of TableDefinition in org.jooq.util.sqlite
 

Classes in org.jooq.util.sqlite that implement TableDefinition
 class SQLiteTableDefinition
          H2 table definition
 

Methods in org.jooq.util.sqlite that return types with arguments of type TableDefinition
protected  List<TableDefinition> SQLiteDatabase.getTables0()
          Retrieve ALL tables from the database.
 

Uses of TableDefinition in org.jooq.util.sqlserver
 

Classes in org.jooq.util.sqlserver that implement TableDefinition
 class SQLServerTableDefinition
           
 

Uses of TableDefinition in org.jooq.util.sybase
 

Classes in org.jooq.util.sybase that implement TableDefinition
 class SybaseTableDefinition
          Sybase table definition
 

Methods in org.jooq.util.sybase that return types with arguments of type TableDefinition
protected  List<TableDefinition> SybaseDatabase.getTables0()
           
 



Copyright © 2011. All Rights Reserved.