Uses of Interface
org.jooq.Row4
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of Row4 in org.jooq
Modifier and TypeMethodDescriptionRecord4.fieldsRow()
Get this record's fields as aRow4
.Record4.valuesRow()
Get this record's values as aRow4
.Modifier and TypeMethodDescriptionRows.toRowList
(Function<? super T, ? extends Field<T1>> f1, Function<? super T, ? extends Field<T2>> f2, Function<? super T, ? extends Field<T3>> f3, Function<? super T, ? extends Field<T4>> f4) Create a collector that can collect into a list ofRow4
.Modifier and TypeMethodDescription<T1,
T2, T3, T4>
voidSpecify a multi-column set clause for theUPDATE
statement.<T1,
T2, T3, T4>
voidSpecify a multi-column set clause for theUPDATE
statement.@NotNull Condition
Create a condition to check this field against some bounds@NotNull BetweenAndStep4<T1,
T2, T3, T4> 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 BetweenAndStep4<T1,
T2, T3, T4> Check if this row value expression is within a symmetric range of two other row value expressions.@NotNull Condition
Check if this row value expression is within a symmetric range of two other row value expressions.@NotNull Condition
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
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 a set of row value expressions for equality.@NotNull Condition
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 distinctness.@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 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 BetweenAndStep4<T1,
T2, T3, T4> Check if this row value expression is not within a range of two other row value expressions.@NotNull Condition
Check if this row value expression is not within a range of two other row value expressions.@NotNull BetweenAndStep4<T1,
T2, T3, T4> Check if this row value expression is not within a symmetric range of two other row value expressions.@NotNull Condition
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,
T2, T3, T4>
@NotNull UpdateFromStep<R>Specify a multi-column set clause for theUPDATE
statement.<T1,
T2, T3, T4>
@NotNull UpdateFromStep<R>Specify a multi-column set clause for theUPDATE
statement.Add a single row of values to the insert statement.Add multiple rows of values to the insert statement.Modifier and TypeMethodDescription@NotNull Condition
Compare this row value expression with a set of row value expressions for equality.@NotNull Condition
Compare this row value expression with a set of row value expressions for equality.InsertValuesStep4.valuesOfRows
(Collection<? extends Row4<T1, T2, T3, T4>> values) Add multiple rows of values to the insert statement. -
Uses of Row4 in org.jooq.impl
Modifier and TypeMethodDescriptionstatic <T1,
T2, T3, T4>
@NotNull Row4<T1,T2, T3, T4> DSL.row
(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4) Create a row value expression of degree4
.static <T1,
T2, T3, T4>
@NotNull Row4<T1,T2, T3, T4> DSL.row
(T1 t1, T2 t2, T3 t3, T4 t4) Create a row value expression of degree4
.Modifier and TypeMethodDescriptionDeprecated, for removal: This API element is subject to removal in a future version.Create aVALUES()
expression of degree4
.
Row4
as aSelectField
directly, instead.