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