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 |
---|---|
<T1,T2,T3,T4> |
DSLContext.newRecord(Field<T1> field1,
Field<T2> field2,
Field<T3> field3,
Field<T4> field4)
Create a new empty
Record . |
Record4<T1,T2,T3,T4> |
Record4.value1(T1 value)
Set the first value.
|
Record4<T1,T2,T3,T4> |
Record4.value2(T2 value)
Set the second value.
|
Record4<T1,T2,T3,T4> |
Record4.value3(T3 value)
Set the third value.
|
Record4<T1,T2,T3,T4> |
Record4.value4(T4 value)
Set the fourth value.
|
Record4<T1,T2,T3,T4> |
Record4.values(T1 t1,
T2 t2,
T3 t3,
T4 t4)
Set all values.
|
Modifier and Type | Method and Description |
---|---|
<T1,T2,T3,T4> |
DSLContext.select(Field<T1> field1,
Field<T2> field2,
Field<T3> field3,
Field<T4> field4)
Create a new DSL select statement.
|
<T1,T2,T3,T4> |
DSLContext.selectDistinct(Field<T1> field1,
Field<T2> field2,
Field<T3> field3,
Field<T4> field4)
Create a new DSL select statement.
|
Modifier and Type | Method and Description |
---|---|
Condition |
BetweenAndStep4.and(Record4<T1,T2,T3,T4> maxValue)
Create a condition to check this field against some bounds
|
BetweenAndStep4<T1,T2,T3,T4> |
Row4.between(Record4<T1,T2,T3,T4> minValue)
Check if this row value expression is within a range of two records.
|
Condition |
Row4.between(Record4<T1,T2,T3,T4> minValue,
Record4<T1,T2,T3,T4> maxValue)
Check if this row value expression is within a range of two records.
|
Condition |
Row4.between(Record4<T1,T2,T3,T4> minValue,
Record4<T1,T2,T3,T4> maxValue)
Check if this row value expression is within a range of two records.
|
BetweenAndStep4<T1,T2,T3,T4> |
Row4.betweenSymmetric(Record4<T1,T2,T3,T4> minValue)
Check if this row value expression is within a symmetric range of two
records.
|
Condition |
Row4.betweenSymmetric(Record4<T1,T2,T3,T4> minValue,
Record4<T1,T2,T3,T4> maxValue)
Check if this row value expression is within a symmetric range of two
records.
|
Condition |
Row4.betweenSymmetric(Record4<T1,T2,T3,T4> minValue,
Record4<T1,T2,T3,T4> maxValue)
Check if this row value expression is within a symmetric range of two
records.
|
Condition |
Row4.compare(Comparator comparator,
Record4<T1,T2,T3,T4> record)
Compare this row value expression with a record record
using a dynamic comparator.
|
Condition |
Row4.eq(Record4<T1,T2,T3,T4> record)
Compare this row value expression with a record for equality.
|
Condition |
Row4.equal(Record4<T1,T2,T3,T4> record)
Compare this row value expression with a record for equality.
|
Condition |
Row4.ge(Record4<T1,T2,T3,T4> record)
Compare this row value expression with a record for order.
|
Condition |
Row4.greaterOrEqual(Record4<T1,T2,T3,T4> record)
Compare this row value expression with a record for order.
|
Condition |
Row4.greaterThan(Record4<T1,T2,T3,T4> record)
Compare this row value expression with a record for order.
|
Condition |
Row4.gt(Record4<T1,T2,T3,T4> record)
Compare this row value expression with a record for order.
|
Condition |
Row4.in(Record4<T1,T2,T3,T4>... record)
Compare this row value expression with a set of records for equality.
|
Condition |
Row4.le(Record4<T1,T2,T3,T4> record)
Compare this row value expression with a record for order.
|
Condition |
Row4.lessOrEqual(Record4<T1,T2,T3,T4> record)
Compare this row value expression with a record for order.
|
Condition |
Row4.lessThan(Record4<T1,T2,T3,T4> record)
Compare this row value expression with a record for order.
|
Condition |
Row4.lt(Record4<T1,T2,T3,T4> record)
Compare this row value expression with a record for order.
|
Condition |
Row4.ne(Record4<T1,T2,T3,T4> record)
Compare this row value expression with a record for non-equality.
|
BetweenAndStep4<T1,T2,T3,T4> |
Row4.notBetween(Record4<T1,T2,T3,T4> minValue)
Check if this row value expression is within a range of two records.
|
Condition |
Row4.notBetween(Record4<T1,T2,T3,T4> minValue,
Record4<T1,T2,T3,T4> maxValue)
Check if this row value expression is within a range of two records.
|
Condition |
Row4.notBetween(Record4<T1,T2,T3,T4> minValue,
Record4<T1,T2,T3,T4> maxValue)
Check if this row value expression is within a range of two records.
|
BetweenAndStep4<T1,T2,T3,T4> |
Row4.notBetweenSymmetric(Record4<T1,T2,T3,T4> minValue)
Check if this row value expression is not within a symmetric range of two
records.
|
Condition |
Row4.notBetweenSymmetric(Record4<T1,T2,T3,T4> minValue,
Record4<T1,T2,T3,T4> maxValue)
Check if this row value expression is not within a symmetric range of two
records.
|
Condition |
Row4.notBetweenSymmetric(Record4<T1,T2,T3,T4> minValue,
Record4<T1,T2,T3,T4> maxValue)
Check if this row value expression is not within a symmetric range of two
records.
|
Condition |
Row4.notEqual(Record4<T1,T2,T3,T4> record)
Compare this row value expression with a record for non-equality
|
Condition |
Row4.notIn(Record4<T1,T2,T3,T4>... record)
Compare this row value expression with a set of records for non-equality.
|
Modifier and Type | Method and Description |
---|---|
<T1,T2,T3,T4> |
UpdateQuery.addValues(Row4<T1,T2,T3,T4> row,
Select<? extends Record4<T1,T2,T3,T4>> select)
Specify a multi-column set clause for the
UPDATE statement. |
Condition |
Row4.eq(Select<? extends Record4<T1,T2,T3,T4>> select)
Compare this row value expression with a subselect for equality.
|
Condition |
Row4.equal(Select<? extends Record4<T1,T2,T3,T4>> select)
Compare this row value expression with a subselect for equality.
|
Condition |
Row4.ge(Select<? extends Record4<T1,T2,T3,T4>> select)
Compare this row value expression with a subselect for order.
|
Condition |
Row4.greaterOrEqual(Select<? extends Record4<T1,T2,T3,T4>> select)
Compare this row value expression with a subselect for order.
|
Condition |
Row4.greaterThan(Select<? extends Record4<T1,T2,T3,T4>> select)
Compare this row value expression with a subselect for order.
|
Condition |
Row4.gt(Select<? extends Record4<T1,T2,T3,T4>> select)
Compare this row value expression with a subselect for order.
|
Condition |
Row4.in(Select<? extends Record4<T1,T2,T3,T4>> select)
Compare this row value expression with a subselect for equality.
|
Condition |
Row4.le(Select<? extends Record4<T1,T2,T3,T4>> select)
Compare this row value expression with a subselect for order.
|
Condition |
Row4.lessOrEqual(Select<? extends Record4<T1,T2,T3,T4>> select)
Compare this row value expression with a subselect for order.
|
Condition |
Row4.lessThan(Select<? extends Record4<T1,T2,T3,T4>> select)
Compare this row value expression with a subselect for order.
|
Condition |
Row4.lt(Select<? extends Record4<T1,T2,T3,T4>> select)
Compare this row value expression with a subselect for order.
|
Condition |
Row4.ne(Select<? extends Record4<T1,T2,T3,T4>> select)
Compare this row value expression with a subselect for non-equality.
|
Condition |
Row4.notEqual(Select<? extends Record4<T1,T2,T3,T4>> select)
Compare this row value expression with a subselect for non-equality.
|
Condition |
Row4.notIn(Select<? extends Record4<T1,T2,T3,T4>> select)
Compare this row value expression with a subselect for non-equality.
|
Merge<R> |
MergeValuesStep4.select(Select<? extends Record4<T1,T2,T3,T4>> select)
Use a
SELECT statement as the source of values for the
MERGE statement
This variant of the MERGE .. |
Insert<R> |
InsertValuesStep4.select(Select<? extends Record4<T1,T2,T3,T4>> select)
Use a
SELECT statement as the source of values for the
INSERT statement
This variant of the INSERT .. |
<T1,T2,T3,T4> |
UpdateSetFirstStep.set(Row4<T1,T2,T3,T4> row,
Select<? extends Record4<T1,T2,T3,T4>> select)
Specify a multi-column set clause for the
UPDATE statement. |
Modifier and Type | Method and Description |
---|---|
<T1,T2,T3,T4> |
DefaultDSLContext.newRecord(Field<T1> field1,
Field<T2> field2,
Field<T3> field3,
Field<T4> field4) |
Modifier and Type | Method and Description |
---|---|
static <T1,T2,T3,T4> |
DSL.select(Field<T1> field1,
Field<T2> field2,
Field<T3> field3,
Field<T4> field4)
Create a new DSL subselect statement.
|
<T1,T2,T3,T4> |
DefaultDSLContext.select(Field<T1> field1,
Field<T2> field2,
Field<T3> field3,
Field<T4> field4) |
static <T1,T2,T3,T4> |
DSL.selectDistinct(Field<T1> field1,
Field<T2> field2,
Field<T3> field3,
Field<T4> field4)
Create a new DSL subselect statement.
|
<T1,T2,T3,T4> |
DefaultDSLContext.selectDistinct(Field<T1> field1,
Field<T2> field2,
Field<T3> field3,
Field<T4> field4) |
static <T1,T2,T3,T4> |
DSL.values(Row4<T1,T2,T3,T4>... rows)
Create a
VALUES() expression of degree 4 . |
Copyright © 2014. All Rights Reserved.