Uses of Interface
org.jooq.ForeignKey

Packages that use ForeignKey
org.jooq   
org.jooq.impl   
 

Uses of ForeignKey in org.jooq
 

Methods in org.jooq that return types with arguments of type ForeignKey
 List<ForeignKey<?,R>> UniqueKey.getReferences()
          A list of all ForeignKeys, referencing this UniqueKey
 List<ForeignKey<R,?>> Table.getReferences()
          Get the list of FOREIGN KEY's of this table
<O extends Record>
List<ForeignKey<O,R>>
UpdatableTable.getReferencesFrom(Table<O> other)
          Get a list of FOREIGN KEY's of a specific table, referencing a this table.
<O extends Record>
List<ForeignKey<R,O>>
Table.getReferencesTo(Table<O> other)
          Get a list of FOREIGN KEY's of this table, referencing a specific table.
 

Methods in org.jooq with parameters of type ForeignKey
 void SelectQuery.addJoinOnKey(TableLike<?> table, JoinType type, ForeignKey<?,?> key)
          Joins the existing table product to a new table using a foreign key
 TableOnConditionStep TableOnStep.onKey(ForeignKey<?,?> key)
          Join the table on a non-ambiguous foreign key relationship between the two joined tables.
 SelectJoinStep SelectOnStep.onKey(ForeignKey<?,?> key)
          Join the table on a non-ambiguous foreign key relationship between the two joined tables.
 

Uses of ForeignKey in org.jooq.impl
 

Methods in org.jooq.impl that return ForeignKey
protected static
<R extends Record,U extends Record>
ForeignKey<R,U>
AbstractKeys.createForeignKey(UniqueKey<U> key, Table<R> table, TableField<R,?>... fields)
          Factory method for foreign keys
 

Methods in org.jooq.impl that return types with arguments of type ForeignKey
 List<ForeignKey<R,?>> CustomTable.getReferences()
           
<O extends Record>
List<ForeignKey<O,R>>
UpdatableTableImpl.getReferencesFrom(Table<O> other)
           
 



Copyright © 2012. All Rights Reserved.