Uses of Interface
org.jooq.RowN
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of RowN in org.jooq
Modifier and TypeMethodDescriptionvoid
Specify a multi-column set clause for theUPDATE
statement.void
Specify a multi-column set clause for theUPDATE
statement.@NotNull Condition
Create a condition to check this field against some bounds@NotNull BetweenAndStepN
Check if this row value expression is within a range of two other row value expressions.@NotNull Condition
Check if this row value expression is within a range of two other row value expressions.@NotNull BetweenAndStepN
RowN.betweenSymmetric
(RowN minValue) Check if this row value expression is within a symmetric range of two other row value expressions.@NotNull Condition
RowN.betweenSymmetric
(RowN minValue, RowN maxValue) Check if this row value expression is within a symmetric range of two other row value expressions.@NotNull Condition
RowN.compare
(Comparator comparator, RowN row) Compare this row value expression with another row value expression using a dynamic comparator.@NotNull Condition
Compare this row value expression with another row value expression for equality.@NotNull Condition
Compare this row value expression with another row value expression for equality.@NotNull Condition
Compare this row value expression with another row value expression for order.@NotNull Condition
RowN.greaterOrEqual
(RowN row) Compare this row value expression with another row value expression for order.@NotNull Condition
RowN.greaterThan
(RowN row) Compare this row value expression with another row value expression for order.@NotNull Condition
Compare this row value expression with another row value expression for order.@NotNull Condition
Compare this row value expression with a set of row value expressions for equality.@NotNull Condition
RowN.isDistinctFrom
(RowN row) Compare this row value expression with another row value expression for distinctness.@NotNull Condition
RowN.isNotDistinctFrom
(RowN row) Compare this row value expression with another row value expression for distinctness.@NotNull Condition
Compare this row value expression with another row value expression for order.@NotNull Condition
RowN.lessOrEqual
(RowN row) Compare this row value expression with another row value expression for order.@NotNull Condition
Compare this row value expression with another row value expression for order.@NotNull Condition
Compare this row value expression with another row value expression for order.@NotNull Condition
Compare this row value expression with another row value expression for non-equality.@NotNull BetweenAndStepN
RowN.notBetween
(RowN minValue) Check if this row value expression is not within a range of two other row value expressions.@NotNull Condition
RowN.notBetween
(RowN minValue, RowN maxValue) Check if this row value expression is not within a range of two other row value expressions.@NotNull BetweenAndStepN
RowN.notBetweenSymmetric
(RowN minValue) Check if this row value expression is not within a symmetric range of two other row value expressions.@NotNull Condition
RowN.notBetweenSymmetric
(RowN minValue, RowN maxValue) Check if this row value expression is not within a symmetric range of two other row value expressions.@NotNull Condition
Compare this row value expression with another row value expression for non-equality.@NotNull Condition
Compare this row value expression with a set of row value expressions for equality.@NotNull Statement
Assign a value to this set of variables.@NotNull UpdateFromStep<R>
Specify a multi-column set clause for theUPDATE
statement.@NotNull UpdateFromStep<R>
Specify a multi-column set clause for theUPDATE
statement.@NotNull InsertValuesStepN<R>
Add a single row of values to the insert statement.@NotNull InsertValuesStepN<R>
InsertValuesStepN.valuesOfRows
(RowN... values) Add multiple rows of values to the insert statement.Modifier and TypeMethodDescription@NotNull Condition
RowN.in
(Collection<? extends RowN> rows) Compare this row value expression with a set of row value expressions for equality.@NotNull Condition
RowN.notIn
(Collection<? extends RowN> rows) Compare this row value expression with a set of row value expressions for equality.@NotNull InsertValuesStepN<R>
InsertValuesStepN.valuesOfRows
(Collection<? extends RowN> values) Add multiple rows of values to the insert statement. -
Uses of RowN in org.jooq.impl
Modifier and TypeMethodDescriptionstatic @NotNull RowN
Create a row value expression of degreeN > 22
.static @NotNull RowN
DSL.row
(Collection<?> values) Create a row value expression of degreeN > 22
.static @NotNull RowN
DSL.row
(SelectField<?>... values) Create a row value expression of degreeN > 22
.
RowN
as aSelectField
directly, instead.