Uses of Enum Class
org.jooq.impl.QOM.ForeignKeyRule
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
JDBC tooling.
-
Uses of QOM.ForeignKeyRule in org.jooq
Modifier and TypeMethodDescription@Nullable QOM.ForeignKeyRule
ForeignKey.getDeleteRule()
@Nullable QOM.ForeignKeyRule
ForeignKey.getUpdateRule()
Modifier and TypeMethodDescription@NotNull ConstraintForeignKeyOnStep
ConstraintForeignKeyOnStep.onDelete
(QOM.ForeignKeyRule rule) Add anON DELETE
clause to theFOREIGN KEY
constraint.@NotNull ConstraintForeignKeyOnStep
ConstraintForeignKeyOnStep.onUpdate
(QOM.ForeignKeyRule rule) Add anON UPDATE
clause to theFOREIGN KEY
constraint. -
Uses of QOM.ForeignKeyRule in org.jooq.impl
Modifier and TypeMethodDescriptionstatic QOM.ForeignKeyRule
Returns the enum constant of this class with the specified name.static QOM.ForeignKeyRule[]
QOM.ForeignKeyRule.values()
Returns an array containing the constants of this enum class, in the order they are declared.Modifier and TypeMethodDescriptionstatic final <R extends Record,
U extends Record>
@NotNull ForeignKey<R, U> Internal.createForeignKey
(Table<R> table, Name name, TableField<R, ?>[] fkFields, UniqueKey<U> uk, TableField<U, ?>[] ukFields, boolean enforced, QOM.ForeignKeyRule deleteRule, QOM.ForeignKeyRule updateRule) Factory method for foreign keys.static final <R extends Record,
U extends Record, ER extends EmbeddableRecord<ER>>
@NotNull ForeignKey<R, U> Internal.createForeignKey
(Table<R> table, Name name, TableField<R, ER> fkEmbeddableField, UniqueKey<U> uk, TableField<U, ER> ukEmbeddableField, boolean enforced, QOM.ForeignKeyRule deleteRule, QOM.ForeignKeyRule updateRule) Factory method for foreign keys.static final <R extends Record,
U extends Record>
@NotNull ForeignKey<R, U> Internal.createForeignKey
(UniqueKey<U> key, Table<R> table, String name, TableField<R, ?>[] fields, boolean enforced, QOM.ForeignKeyRule deleteRule, QOM.ForeignKeyRule updateRule) Factory method for foreign keys. -
Uses of QOM.ForeignKeyRule in org.jooq.tools.jdbc
Modifier and TypeMethodDescriptionstatic final QOM.ForeignKeyRule
JDBCUtils.foreignKeyRule
(int code) Translate theDatabaseMetaData.importedKeyCascade
and various other flag valuse to the jOOQQOM.ForeignKeyRule
representation. -
Uses of QOM.ForeignKeyRule in org.jooq.util.xml
Modifier and TypeMethodDescriptionstatic final QOM.ForeignKeyRule
XmlUtils.foreignKeyRule
(ForeignKeyRule rule) Convert fromForeignKeyRule
(JAXB class) toQOM.ForeignKeyRule
(model class).Modifier and TypeMethodDescriptionstatic final ForeignKeyRule
XmlUtils.foreignKeyRule
(QOM.ForeignKeyRule rule) Convert fromQOM.ForeignKeyRule
(model class) toForeignKeyRule
(JAXB class).