Uses of Enum Class
org.jooq.impl.QOM.ForeignKeyRule
Packages that use 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
Methods in org.jooq that return QOM.ForeignKeyRuleModifier and TypeMethodDescription@Nullable QOM.ForeignKeyRule
ForeignKey.getDeleteRule()
@Nullable QOM.ForeignKeyRule
ForeignKey.getUpdateRule()
Methods in org.jooq with parameters of type QOM.ForeignKeyRuleModifier 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
Methods in org.jooq.impl that return QOM.ForeignKeyRuleModifier and TypeMethodDescription@Nullable QOM.ForeignKeyRule
QOM.ForeignKey.$deleteRule()
@Nullable QOM.ForeignKeyRule
QOM.ForeignKey.$updateRule()
static 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.Methods in org.jooq.impl with parameters of type QOM.ForeignKeyRuleModifier and TypeMethodDescription@NotNull QOM.ForeignKey
QOM.ForeignKey.$deleteRule
(QOM.ForeignKeyRule newDeleteRule) @NotNull QOM.ForeignKey
QOM.ForeignKey.$updateRule
(QOM.ForeignKeyRule newDeleteRule) static 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
Methods in org.jooq.tools.jdbc that return QOM.ForeignKeyRuleModifier 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
Methods in org.jooq.util.xml that return QOM.ForeignKeyRuleModifier and TypeMethodDescriptionstatic final QOM.ForeignKeyRule
XmlUtils.foreignKeyRule
(ForeignKeyRule rule) Convert fromForeignKeyRule
(JAXB class) toQOM.ForeignKeyRule
(model class).Methods in org.jooq.util.xml with parameters of type QOM.ForeignKeyRuleModifier and TypeMethodDescriptionstatic final ForeignKeyRule
XmlUtils.foreignKeyRule
(QOM.ForeignKeyRule rule) Convert fromQOM.ForeignKeyRule
(model class) toForeignKeyRule
(JAXB class).