Uses of Interface
org.jooq.Row1
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of Row1 in org.jooq
Modifier and TypeMethodDescriptionRecord1.fieldsRow()
Get this record's fields as aRow1
.Record1.valuesRow()
Get this record's values as aRow1
.Modifier and TypeMethodDescription<T1> void
Specify a multi-column set clause for theUPDATE
statement.<T1> void
Specify a multi-column set clause for theUPDATE
statement.@NotNull Condition
Create a condition to check this field against some bounds@NotNull BetweenAndStep1<T1>
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 BetweenAndStep1<T1>
Row1.betweenSymmetric
(Row1<T1> minValue) Check if this row value expression is within a symmetric range of two other row value expressions.@NotNull Condition
Row1.betweenSymmetric
(Row1<T1> minValue, Row1<T1> maxValue) Check if this row value expression is within a symmetric range of two other row value expressions.@NotNull Condition
Row1.compare
(Comparator comparator, Row1<T1> 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
Row1.greaterOrEqual
(Row1<T1> row) Compare this row value expression with another row value expression for order.@NotNull Condition
Row1.greaterThan
(Row1<T1> 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
Row1.isDistinctFrom
(Row1<T1> row) Compare this row value expression with another row value expression for distinctness.@NotNull Condition
Row1.isNotDistinctFrom
(Row1<T1> 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
Row1.lessOrEqual
(Row1<T1> 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 BetweenAndStep1<T1>
Row1.notBetween
(Row1<T1> minValue) Check if this row value expression is not within a range of two other row value expressions.@NotNull Condition
Row1.notBetween
(Row1<T1> minValue, Row1<T1> maxValue) Check if this row value expression is not within a range of two other row value expressions.@NotNull BetweenAndStep1<T1>
Row1.notBetweenSymmetric
(Row1<T1> minValue) Check if this row value expression is not within a symmetric range of two other row value expressions.@NotNull Condition
Row1.notBetweenSymmetric
(Row1<T1> minValue, Row1<T1> 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.<T1> @NotNull UpdateFromStep<R>
Specify a multi-column set clause for theUPDATE
statement.<T1> @NotNull UpdateFromStep<R>
Specify a multi-column set clause for theUPDATE
statement.@NotNull InsertValuesStep1<R,
T1> Add a single row of values to the insert statement.@NotNull InsertValuesStep1<R,
T1> InsertValuesStep1.valuesOfRows
(Row1<T1>... values) Add multiple rows of values to the insert statement.Modifier and TypeMethodDescription@NotNull Condition
Row1.in
(Collection<? extends Row1<T1>> rows) Compare this row value expression with a set of row value expressions for equality.@NotNull Condition
Row1.notIn
(Collection<? extends Row1<T1>> rows) Compare this row value expression with a set of row value expressions for equality.@NotNull InsertValuesStep1<R,
T1> InsertValuesStep1.valuesOfRows
(Collection<? extends Row1<T1>> values) Add multiple rows of values to the insert statement. -
Uses of Row1 in org.jooq.impl
Modifier and TypeMethodDescriptionstatic <T1> @NotNull Row1<T1>
DSL.row
(SelectField<T1> field1) Create a row value expression of degree1
.static <T1> @NotNull Row1<T1>
DSL.row
(T1 t1) Create a row value expression of degree1
.
Row1
as aSelectField
directly, instead.