Uses of Interface
org.jooq.CreateTableConstraintStep
-
Uses of CreateTableConstraintStep in org.jooq
Modifier and TypeMethodDescription@NotNull CreateTableConstraintStep
Convenience method to add an unnamed (system named)CHECK
constraint to the table.@NotNull CreateTableConstraintStep
CreateTableConstraintStep.constraint
(Constraint constraint) Add a constraint to the table.@NotNull CreateTableConstraintStep
CreateTableConstraintStep.constraints
(Collection<? extends Constraint> constraints) Add constraints to the table.@NotNull CreateTableConstraintStep
CreateTableConstraintStep.constraints
(Constraint... constraints) Add constraints to the table.@NotNull CreateTableConstraintStep
CreateTableConstraintStep.primaryKey
(String... fields) Convenience method to add an unnamed (system named)PRIMARY KEY
constraint to the table.@NotNull CreateTableConstraintStep
CreateTableConstraintStep.primaryKey
(Collection<? extends Field<?>> fields) Convenience method to add an unnamed (system named)PRIMARY KEY
constraint to the table.@NotNull CreateTableConstraintStep
CreateTableConstraintStep.primaryKey
(Field<?>... fields) Convenience method to add an unnamed (system named)PRIMARY KEY
constraint to the table.@NotNull CreateTableConstraintStep
CreateTableConstraintStep.primaryKey
(Name... fields) Convenience method to add an unnamed (system named)PRIMARY KEY
constraint to the table.@NotNull CreateTableConstraintStep
Convenience method to add an unnamed (system named)UNIQUE
constraint to the table.@NotNull CreateTableConstraintStep
CreateTableConstraintStep.unique
(Collection<? extends Field<?>> fields) Convenience method to add an unnamed (system named)UNIQUE
constraint to the table.@NotNull CreateTableConstraintStep
Convenience method to add an unnamed (system named)UNIQUE
constraint to the table.@NotNull CreateTableConstraintStep
Convenience method to add an unnamed (system named)UNIQUE
constraint to the table.