Uses of Interface
org.jooq.ConstraintEnforcementStep
-
Packages that use ConstraintEnforcementStep Package Description org.jooq This package contains jOOQ's public API.org.jooq.impl This package contains jOOQ's implementation classes. -
-
Uses of ConstraintEnforcementStep in org.jooq
Subinterfaces of ConstraintEnforcementStep in org.jooq Modifier and Type Interface Description interfaceConstraintForeignKeyOnStepThe step in theConstraintconstruction DSL API that allows for addingON DELETEandON UPDATEclauses.Methods in org.jooq that return ConstraintEnforcementStep Modifier and Type Method Description @NotNull ConstraintEnforcementStepConstraintTypeStep. check(Condition condition)Create aCHECKconstraint.@NotNull ConstraintEnforcementStepConstraintTypeStep. primaryKey(String... fields)Create aPRIMARY KEYconstraint.@NotNull ConstraintEnforcementStepConstraintTypeStep. primaryKey(Field<?>... fields)Create aPRIMARY KEYconstraint.@NotNull ConstraintEnforcementStepConstraintTypeStep. primaryKey(Name... fields)Create aPRIMARY KEYconstraint.@NotNull ConstraintEnforcementStepConstraintTypeStep. unique(String... fields)Create aUNIQUEconstraint.@NotNull ConstraintEnforcementStepConstraintTypeStep. unique(Field<?>... fields)Create aUNIQUEconstraint.@NotNull ConstraintEnforcementStepConstraintTypeStep. unique(Name... fields)Create aUNIQUEconstraint. -
Uses of ConstraintEnforcementStep in org.jooq.impl
Methods in org.jooq.impl that return ConstraintEnforcementStep Modifier and Type Method Description static @NotNull ConstraintEnforcementStepDSL. check(Condition condition)Create an unnamed (system named)CHECKconstraint.static @NotNull ConstraintEnforcementStepDSL. primaryKey(String... fields)Create an unnamed (system named)PRIMARY KEYconstraint.static @NotNull ConstraintEnforcementStepDSL. primaryKey(Field<?>... fields)Create an unnamed (system named)PRIMARY KEYconstraint.static @NotNull ConstraintEnforcementStepDSL. primaryKey(Name... fields)Create an unnamed (system named)PRIMARY KEYconstraint.static @NotNull ConstraintEnforcementStepDSL. unique(String... fields)Create an unnamed (system named)UNIQUEconstraint.static @NotNull ConstraintEnforcementStepDSL. unique(Field<?>... fields)Create an unnamed (system named)UNIQUEconstraint.static @NotNull ConstraintEnforcementStepDSL. unique(Name... fields)Create an unnamed (system named)UNIQUEconstraint.
-