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 |
---|---|
Row4<T1,T2,T3,T4> |
Record4.fieldsRow()
Get this record's fields as a
Row4 . |
Row4<T1,T2,T3,T4> |
Record4.valuesRow()
Get this record's values as a
Row4 . |
Modifier and Type | Method and Description |
---|---|
<T1,T2,T3,T4> |
UpdateQuery.addValues(Row4<T1,T2,T3,T4> row,
Row4<T1,T2,T3,T4> value)
Specify a multi-column set clause for the
UPDATE statement. |
<T1,T2,T3,T4> |
UpdateQuery.addValues(Row4<T1,T2,T3,T4> row,
Row4<T1,T2,T3,T4> value)
Specify a multi-column set clause for the
UPDATE statement. |
<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 |
BetweenAndStep4.and(Row4<T1,T2,T3,T4> maxValue)
Create a condition to check this field against some bounds
|
BetweenAndStep4<T1,T2,T3,T4> |
Row4.between(Row4<T1,T2,T3,T4> minValue)
Check if this row value expression is within a range of two other row
value expressions.
|
Condition |
Row4.between(Row4<T1,T2,T3,T4> minValue,
Row4<T1,T2,T3,T4> maxValue)
Check if this row value expression is within a range of two other row
value expressions.
|
Condition |
Row4.between(Row4<T1,T2,T3,T4> minValue,
Row4<T1,T2,T3,T4> maxValue)
Check if this row value expression is within a range of two other row
value expressions.
|
BetweenAndStep4<T1,T2,T3,T4> |
Row4.betweenSymmetric(Row4<T1,T2,T3,T4> minValue)
Check if this row value expression is within a symmetric range of two
other row value expressions.
|
Condition |
Row4.betweenSymmetric(Row4<T1,T2,T3,T4> minValue,
Row4<T1,T2,T3,T4> maxValue)
Check if this row value expression is within a symmetric range of two
other row value expressions.
|
Condition |
Row4.betweenSymmetric(Row4<T1,T2,T3,T4> minValue,
Row4<T1,T2,T3,T4> maxValue)
Check if this row value expression is within a symmetric range of two
other row value expressions.
|
Condition |
Row4.compare(Comparator comparator,
Row4<T1,T2,T3,T4> row)
Compare this row value expression with another row value expression
using a dynamic comparator.
|
Condition |
Row4.eq(Row4<T1,T2,T3,T4> row)
Compare this row value expression with another row value expression for
equality.
|
Condition |
Row4.equal(Row4<T1,T2,T3,T4> row)
Compare this row value expression with another row value expression for
equality.
|
Condition |
Row4.ge(Row4<T1,T2,T3,T4> row)
Compare this row value expression with another row value expression for
order.
|
Condition |
Row4.greaterOrEqual(Row4<T1,T2,T3,T4> row)
Compare this row value expression with another row value expression for
order.
|
Condition |
Row4.greaterThan(Row4<T1,T2,T3,T4> row)
Compare this row value expression with another row value expression for
order.
|
Condition |
Row4.gt(Row4<T1,T2,T3,T4> row)
Compare this row value expression with another row value expression for
order.
|
Condition |
Row4.in(Row4<T1,T2,T3,T4>... rows)
Compare this row value expression with a set of row value expressions for
equality.
|
Condition |
Row4.le(Row4<T1,T2,T3,T4> row)
Compare this row value expression with another row value expression for
order.
|
Condition |
Row4.lessOrEqual(Row4<T1,T2,T3,T4> row)
Compare this row value expression with another row value expression for
order.
|
Condition |
Row4.lessThan(Row4<T1,T2,T3,T4> row)
Compare this row value expression with another row value expression for
order.
|
Condition |
Row4.lt(Row4<T1,T2,T3,T4> row)
Compare this row value expression with another row value expression for
order.
|
Condition |
Row4.ne(Row4<T1,T2,T3,T4> row)
Compare this row value expression with another row value expression for
non-equality.
|
BetweenAndStep4<T1,T2,T3,T4> |
Row4.notBetween(Row4<T1,T2,T3,T4> minValue)
Check if this row value expression is not within a range of two other
row value expressions.
|
Condition |
Row4.notBetween(Row4<T1,T2,T3,T4> minValue,
Row4<T1,T2,T3,T4> maxValue)
Check if this row value expression is not within a range of two other
row value expressions.
|
Condition |
Row4.notBetween(Row4<T1,T2,T3,T4> minValue,
Row4<T1,T2,T3,T4> maxValue)
Check if this row value expression is not within a range of two other
row value expressions.
|
BetweenAndStep4<T1,T2,T3,T4> |
Row4.notBetweenSymmetric(Row4<T1,T2,T3,T4> minValue)
Check if this row value expression is not within a symmetric range of two
other row value expressions.
|
Condition |
Row4.notBetweenSymmetric(Row4<T1,T2,T3,T4> minValue,
Row4<T1,T2,T3,T4> maxValue)
Check if this row value expression is not within a symmetric range of two
other row value expressions.
|
Condition |
Row4.notBetweenSymmetric(Row4<T1,T2,T3,T4> minValue,
Row4<T1,T2,T3,T4> maxValue)
Check if this row value expression is not within a symmetric range of two
other row value expressions.
|
Condition |
Row4.notEqual(Row4<T1,T2,T3,T4> row)
Compare this row value expression with another row value expression for
non-equality.
|
Condition |
Row4.notIn(Row4<T1,T2,T3,T4>... rows)
Compare this row value expression with a set of row value expressions for
equality.
|
<T1,T2,T3,T4> |
UpdateSetFirstStep.set(Row4<T1,T2,T3,T4> row,
Row4<T1,T2,T3,T4> value)
Specify a multi-column set clause for the
UPDATE statement. |
<T1,T2,T3,T4> |
UpdateSetFirstStep.set(Row4<T1,T2,T3,T4> row,
Row4<T1,T2,T3,T4> value)
Specify a multi-column set clause for the
UPDATE statement. |
<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 |
---|---|
Condition |
Row4.in(Collection<? extends Row4<T1,T2,T3,T4>> rows)
Compare this row value expression with a set of row value expressions for
equality.
|
Condition |
Row4.notIn(Collection<? extends Row4<T1,T2,T3,T4>> rows)
Compare this row value expression with a set of row value expressions for
equality.
|
Modifier and Type | Method and Description |
---|---|
static <T1,T2,T3,T4> |
DSL.row(Field<T1> t1,
Field<T2> t2,
Field<T3> t3,
Field<T4> t4)
Create a row value expression of degree
4 . |
static <T1,T2,T3,T4> |
DSL.row(T1 t1,
T2 t2,
T3 t3,
T4 t4)
Create a row value expression of degree
4 . |
Modifier and Type | Method and Description |
---|---|
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.