Uses of Interface
org.jooq.Row4

Packages that use Row4
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
  • Uses of Row4 in org.jooq

    Methods in org.jooq that return Row4
    Modifier and Type
    Method
    Description
    @NotNull Row4<T1,​T2,​T3,​T4>
    Record4.fieldsRow()
    Get this record's fields as a Row4.
    @NotNull Row4<T1,​T2,​T3,​T4>
    Record4.valuesRow()
    Get this record's values as a Row4.
    Methods in org.jooq that return types with arguments of type Row4
    Modifier and Type
    Method
    Description
    static <T,​ T1,​ T2,​ T3,​ T4>
    Collector<T,​?,​List<Row4<T1,​T2,​T3,​T4>>>
    Rows.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 of Row4.
    Methods in org.jooq with parameters of type Row4
    Modifier and Type
    Method
    Description
    <T1,​ T2,​ T3,​ T4>
    void
    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>
    void
    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.
    @NotNull Condition
    BetweenAndStep4.and​(Row4<T1,​T2,​T3,​T4> maxValue)
    Create a condition to check this field against some bounds
    @NotNull 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.
    @NotNull 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.
    @NotNull 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.
    @NotNull 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.
    @NotNull 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.
    @NotNull Condition
    Row4.eq​(Row4<T1,​T2,​T3,​T4> row)
    Compare this row value expression with another row value expression for equality.
    @NotNull Condition
    Row4.equal​(Row4<T1,​T2,​T3,​T4> row)
    Compare this row value expression with another row value expression for equality.
    @NotNull Condition
    Row4.ge​(Row4<T1,​T2,​T3,​T4> row)
    Compare this row value expression with another row value expression for order.
    @NotNull Condition
    Row4.greaterOrEqual​(Row4<T1,​T2,​T3,​T4> row)
    Compare this row value expression with another row value expression for order.
    @NotNull Condition
    Row4.greaterThan​(Row4<T1,​T2,​T3,​T4> row)
    Compare this row value expression with another row value expression for order.
    @NotNull Condition
    Row4.gt​(Row4<T1,​T2,​T3,​T4> row)
    Compare this row value expression with another row value expression for order.
    @NotNull Condition
    Row4.in​(Row4<T1,​T2,​T3,​T4>... rows)
    Compare this row value expression with a set of row value expressions for equality.
    @NotNull Condition
    Row4.isDistinctFrom​(Row4<T1,​T2,​T3,​T4> row)
    Compare this row value expression with another row value expression for distinctness.
    @NotNull Condition
    Row4.isNotDistinctFrom​(Row4<T1,​T2,​T3,​T4> row)
    Compare this row value expression with another row value expression for distinctness.
    @NotNull Condition
    Row4.le​(Row4<T1,​T2,​T3,​T4> row)
    Compare this row value expression with another row value expression for order.
    @NotNull Condition
    Row4.lessOrEqual​(Row4<T1,​T2,​T3,​T4> row)
    Compare this row value expression with another row value expression for order.
    @NotNull Condition
    Row4.lessThan​(Row4<T1,​T2,​T3,​T4> row)
    Compare this row value expression with another row value expression for order.
    @NotNull Condition
    Row4.lt​(Row4<T1,​T2,​T3,​T4> row)
    Compare this row value expression with another row value expression for order.
    @NotNull Condition
    Row4.ne​(Row4<T1,​T2,​T3,​T4> row)
    Compare this row value expression with another row value expression for non-equality.
    @NotNull 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.
    @NotNull 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.
    @NotNull 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.
    @NotNull 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.
    @NotNull Condition
    Row4.notEqual​(Row4<T1,​T2,​T3,​T4> row)
    Compare this row value expression with another row value expression for non-equality.
    @NotNull Condition
    Row4.notIn​(Row4<T1,​T2,​T3,​T4>... rows)
    Compare this row value expression with a set of row value expressions for equality.
    @NotNull Statement
    Row4.set​(Row4<T1,​T2,​T3,​T4> row)
    Assign a value to this set of variables.
    <T1,​ T2,​ T3,​ T4>
    @NotNull UpdateFromStep<R>
    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>
    @NotNull UpdateFromStep<R>
    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.
    @NotNull InsertValuesStep4<R,​T1,​T2,​T3,​T4>
    InsertValuesStep4.values​(Row4<T1,​T2,​T3,​T4> values)
    Add a single row of values to the insert statement.
    @NotNull InsertValuesStep4<R,​T1,​T2,​T3,​T4>
    InsertValuesStep4.valuesOfRows​(Row4<T1,​T2,​T3,​T4>... values)
    Add multiple rows of values to the insert statement.
    Method parameters in org.jooq with type arguments of type Row4
    Modifier and Type
    Method
    Description
    @NotNull 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.
    @NotNull 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.
    @NotNull InsertValuesStep4<R,​T1,​T2,​T3,​T4>
    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

    Methods in org.jooq.impl that return Row4
    Modifier and Type
    Method
    Description
    static <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 degree 4.
    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 degree 4.
    Methods in org.jooq.impl with parameters of type Row4
    Modifier and Type
    Method
    Description
    static <T1,​ T2,​ T3,​ T4>
    @NotNull Field<Record4<T1,​T2,​T3,​T4>>
    DSL.rowField​(Row4<T1,​T2,​T3,​T4> row)
    Deprecated, for removal: This API element is subject to removal in a future version.
    - [#11812] - 3.15.0 - Use Row4 as a SelectField directly, instead.
    static <T1,​ T2,​ T3,​ T4>
    @NotNull Table<Record4<T1,​T2,​T3,​T4>>
    DSL.values​(Row4<T1,​T2,​T3,​T4>... rows)
    Create a VALUES() expression of degree 4.