Uses of Interface
org.jooq.Check
-
Packages that use Check Package Description org.jooq This package contains jOOQ's public API.org.jooq.impl This package contains jOOQ's implementation classes. -
-
Uses of Check in org.jooq
Methods in org.jooq that return types with arguments of type Check Modifier and Type Method Description @NotNull List<Check<?>>Domain. getChecks()TheDOMAIN's condition.@NotNull List<Check<R>>Table. getChecks()Get a list ofCHECKconstraints of this table. -
Uses of Check in org.jooq.impl
Methods in org.jooq.impl that return Check Modifier and Type Method Description static <R extends Record>
@NotNull Check<R>Internal. createCheck(Table<R> table, Name name, String condition)Factory method for check constraints.static <R extends Record>
@NotNull Check<R>Internal. createCheck(Table<R> table, Name name, String condition, boolean enforced)Factory method for check constraints.Methods in org.jooq.impl with parameters of type Check Modifier and Type Method Description static <T> @NotNull Domain<T>Internal. createDomain(Schema schema, Name name, DataType<T> type, Check<?>... checks)Factory method for domain specifications.
-