Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes. |
Modifier and Type | Method and Description |
---|---|
Condition |
Field.compare(Comparator comparator,
QuantifiedSelect<? extends Record1<T>> query)
Compare this field with a quantified subselect using a dynamic
comparator.
|
Condition |
Field.eq(QuantifiedSelect<? extends Record1<T>> query)
this = [quantifier] (Select |
Condition |
Field.equal(QuantifiedSelect<? extends Record1<T>> query)
this = [quantifier] (Select |
Condition |
Field.ge(QuantifiedSelect<? extends Record1<T>> query)
this >= [quantifier] (Select |
Condition |
Field.greaterOrEqual(QuantifiedSelect<? extends Record1<T>> query)
this >= [quantifier] (Select |
Condition |
Field.greaterThan(QuantifiedSelect<? extends Record1<T>> query)
this > [quantifier] (Select |
Condition |
Field.gt(QuantifiedSelect<? extends Record1<T>> query)
this > [quantifier] (Select |
Condition |
Field.le(QuantifiedSelect<? extends Record1<T>> query)
this <= [quantifier] (Select |
Condition |
Field.lessOrEqual(QuantifiedSelect<? extends Record1<T>> query)
this <= [quantifier] (Select |
Condition |
Field.lessThan(QuantifiedSelect<? extends Record1<T>> query)
this < [quantifier] (Select |
Condition |
Field.lt(QuantifiedSelect<? extends Record1<T>> query)
this < [quantifier] (Select |
Condition |
Field.ne(QuantifiedSelect<? extends Record1<T>> query)
this ! |
Condition |
Field.notEqual(QuantifiedSelect<? extends Record1<T>> query)
this ! |
Modifier and Type | Method and Description |
---|---|
static <T> QuantifiedSelect<Record1<T>> |
DSL.all(Field<T[]> array)
Create an
ALL quantified select to be used in quantified
comparison predicate expressions. |
static <R extends Record> |
DSL.all(Select<R> select)
Create an
ALL quantified select to be used in quantified
comparison predicate expressions. |
static <T> QuantifiedSelect<Record1<T>> |
DSL.all(T... array)
Create an
ALL quantified select to be used in quantified
comparison predicate expressions. |
static <T> QuantifiedSelect<Record1<T>> |
DSL.any(Field<T[]> array)
Create an
ANY quantified select to be used in quantified
comparison predicate expressions. |
static <R extends Record> |
DSL.any(Select<R> select)
Create an
ANY quantified select to be used in quantified
comparison predicate expressions. |
static <T> QuantifiedSelect<Record1<T>> |
DSL.any(T... array)
Create an
ANY quantified select to be used in quantified
comparison predicate expressions. |
Copyright © 2014. All Rights Reserved.