| Package | Description |
|---|---|
| org.jooq |
The
org.jooq package contains jOOQ's public API
This package mostly contains interfaces that are implemented by the
org.jooq.impl package. |
| org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes
This package provides implementations for the jOOQ API from
org.jooq, whose interfaces are constructed mostly through the
Factory class, which hides implementation facts from
the public API |
| Modifier and Type | Method and Description |
|---|---|
UniqueKey<U> |
ForeignKey.getKey()
The referenced
Key |
UniqueKey<R> |
UpdatableTable.getMainKey()
Retrieve the table's main unique key.
|
| Modifier and Type | Method and Description |
|---|---|
List<UniqueKey<R>> |
UpdatableTable.getKeys()
Retrieve all of the table's unique keys.
|
| Modifier and Type | Method and Description |
|---|---|
protected static <R extends Record> |
AbstractKeys.createUniqueKey(Table<R> table,
TableField<R,?>... fields)
Factory method for unique keys
|
UniqueKey<R> |
UpdatableTableImpl.getMainKey()
Retrieve the table's main unique key.
|
| Modifier and Type | Method and Description |
|---|---|
List<UniqueKey<R>> |
UpdatableTableImpl.getKeys()
Retrieve all of the table's unique keys.
|
| Modifier and Type | Method and Description |
|---|---|
protected static <R extends Record,U extends Record> |
AbstractKeys.createForeignKey(UniqueKey<U> key,
Table<R> table,
TableField<R,?>... fields)
Factory method for foreign keys
|
Copyright © 2013. All Rights Reserved.