Uses of Enum Class
org.jooq.impl.QOM.ConstraintCheckTime
Packages that use QOM.ConstraintCheckTime
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of QOM.ConstraintCheckTime in org.jooq
Methods in org.jooq that return QOM.ConstraintCheckTime -
Uses of QOM.ConstraintCheckTime in org.jooq.impl
Subclasses with type arguments of type QOM.ConstraintCheckTime in org.jooq.implModifier and TypeClassDescriptionstatic enumTheConstraintCheckTimetype.Methods in org.jooq.impl that return QOM.ConstraintCheckTimeModifier and TypeMethodDescription@Nullable QOM.ConstraintCheckTimeQOM.Check.$checkTime()@Nullable QOM.ConstraintCheckTimeQOM.ForeignKey.$checkTime()@Nullable QOM.ConstraintCheckTimeQOM.PrimaryKey.$checkTime()@Nullable QOM.ConstraintCheckTimeQOM.UniqueKey.$checkTime()static QOM.ConstraintCheckTimeReturns the enum constant of this class with the specified name.static QOM.ConstraintCheckTime[]QOM.ConstraintCheckTime.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.ConstraintCheckTimeModifier and TypeMethodDescription@NotNull ConstraintQOM.Check.$checkTime(QOM.ConstraintCheckTime newCheckTime) @NotNull ConstraintQOM.ForeignKey.$checkTime(QOM.ConstraintCheckTime newCheckTime) @NotNull ConstraintQOM.PrimaryKey.$checkTime(QOM.ConstraintCheckTime newCheckTime) @NotNull ConstraintQOM.UniqueKey.$checkTime(QOM.ConstraintCheckTime newCheckTime) Internal.createCheck(Table<R> table, Name name, String condition, boolean enforced, QOM.ConstraintCharacteristic characteristic, QOM.ConstraintCheckTime checkTime) Factory method for check constraints.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.ConstraintCharacteristic characteristic, QOM.ConstraintCheckTime checkTime, 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.ConstraintCharacteristic characteristic, QOM.ConstraintCheckTime checkTime, QOM.ForeignKeyRule deleteRule, QOM.ForeignKeyRule updateRule) Factory method for foreign keys.Internal.createUniqueKey(Table<R> table, Name name, TableField<R, ?>[] fields, boolean enforced, QOM.ConstraintCharacteristic characteristic, QOM.ConstraintCheckTime checkTime) Factory method for unique keys.static final <R extends Record, ER extends EmbeddableRecord<ER>>
@NotNull UniqueKey<R> Internal.createUniqueKey(Table<R> table, Name name, TableField<R, ER> embeddableField, boolean enforced, QOM.ConstraintCharacteristic characteristic, QOM.ConstraintCheckTime checkTime) Factory method for unique keys.