Uses of Enum Class
org.jooq.impl.QOM.ConstraintCharacteristic
Packages that use QOM.ConstraintCharacteristic
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of QOM.ConstraintCharacteristic in org.jooq
Methods in org.jooq that return QOM.ConstraintCharacteristicModifier and TypeMethodDescriptionCheck.characteristic()The constraint characteristic.Key.characteristic()The constraint characteristic. -
Uses of QOM.ConstraintCharacteristic in org.jooq.impl
Subclasses with type arguments of type QOM.ConstraintCharacteristic in org.jooq.implModifier and TypeClassDescriptionstatic enumTheConstraintCharacteristictype.Methods in org.jooq.impl that return QOM.ConstraintCharacteristicModifier and TypeMethodDescription@Nullable QOM.ConstraintCharacteristicQOM.Check.$characteristic()@Nullable QOM.ConstraintCharacteristicQOM.ForeignKey.$characteristic()@Nullable QOM.ConstraintCharacteristicQOM.PrimaryKey.$characteristic()@Nullable QOM.ConstraintCharacteristicQOM.UniqueKey.$characteristic()static QOM.ConstraintCharacteristicReturns the enum constant of this class with the specified name.static QOM.ConstraintCharacteristic[]QOM.ConstraintCharacteristic.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.ConstraintCharacteristicModifier and TypeMethodDescription@NotNull ConstraintQOM.Check.$characteristic(QOM.ConstraintCharacteristic newCharacteristic) @NotNull ConstraintQOM.ForeignKey.$characteristic(QOM.ConstraintCharacteristic newCharacteristic) @NotNull ConstraintQOM.PrimaryKey.$characteristic(QOM.ConstraintCharacteristic newCharacteristic) @NotNull ConstraintQOM.UniqueKey.$characteristic(QOM.ConstraintCharacteristic newCharacteristic) 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.