Uses of Interface
org.jooq.Row5

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

    Methods in org.jooq that return Row5
    Modifier and Type
    Method
    Description
    @NotNull Row5<T1,​T2,​T3,​T4,​T5>
    Record5.fieldsRow()
    Get this record's fields as a Row5.
    @NotNull Row5<T1,​T2,​T3,​T4,​T5>
    Record5.valuesRow()
    Get this record's values as a Row5.
    Methods in org.jooq that return types with arguments of type Row5
    Modifier and Type
    Method
    Description
    static <T,​ T1,​ T2,​ T3,​ T4,​ T5>
    Collector<T,​?,​List<Row5<T1,​T2,​T3,​T4,​T5>>>
    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, Function<? super T,​? extends Field<T5>> f5)
    Create a collector that can collect into a list of Row5.
    Methods in org.jooq with parameters of type Row5
    Modifier and Type
    Method
    Description
    <T1,​ T2,​ T3,​ T4,​ T5>
    void
    UpdateQuery.addValues​(Row5<T1,​T2,​T3,​T4,​T5> row, Row5<T1,​T2,​T3,​T4,​T5> value)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5>
    void
    UpdateQuery.addValues​(Row5<T1,​T2,​T3,​T4,​T5> row, Select<? extends Record5<T1,​T2,​T3,​T4,​T5>> select)
    Specify a multi-column set clause for the UPDATE statement.
    @NotNull Condition
    BetweenAndStep5.and​(Row5<T1,​T2,​T3,​T4,​T5> maxValue)
    Create a condition to check this field against some bounds
    @NotNull BetweenAndStep5<T1,​T2,​T3,​T4,​T5>
    Row5.between​(Row5<T1,​T2,​T3,​T4,​T5> minValue)
    Check if this row value expression is within a range of two other row value expressions.
    @NotNull Condition
    Row5.between​(Row5<T1,​T2,​T3,​T4,​T5> minValue, Row5<T1,​T2,​T3,​T4,​T5> maxValue)
    Check if this row value expression is within a range of two other row value expressions.
    @NotNull BetweenAndStep5<T1,​T2,​T3,​T4,​T5>
    Row5.betweenSymmetric​(Row5<T1,​T2,​T3,​T4,​T5> minValue)
    Check if this row value expression is within a symmetric range of two other row value expressions.
    @NotNull Condition
    Row5.betweenSymmetric​(Row5<T1,​T2,​T3,​T4,​T5> minValue, Row5<T1,​T2,​T3,​T4,​T5> maxValue)
    Check if this row value expression is within a symmetric range of two other row value expressions.
    @NotNull Condition
    Row5.compare​(Comparator comparator, Row5<T1,​T2,​T3,​T4,​T5> row)
    Compare this row value expression with another row value expression using a dynamic comparator.
    @NotNull Condition
    Row5.eq​(Row5<T1,​T2,​T3,​T4,​T5> row)
    Compare this row value expression with another row value expression for equality.
    @NotNull Condition
    Row5.equal​(Row5<T1,​T2,​T3,​T4,​T5> row)
    Compare this row value expression with another row value expression for equality.
    @NotNull Condition
    Row5.ge​(Row5<T1,​T2,​T3,​T4,​T5> row)
    Compare this row value expression with another row value expression for order.
    @NotNull Condition
    Row5.greaterOrEqual​(Row5<T1,​T2,​T3,​T4,​T5> row)
    Compare this row value expression with another row value expression for order.
    @NotNull Condition
    Row5.greaterThan​(Row5<T1,​T2,​T3,​T4,​T5> row)
    Compare this row value expression with another row value expression for order.
    @NotNull Condition
    Row5.gt​(Row5<T1,​T2,​T3,​T4,​T5> row)
    Compare this row value expression with another row value expression for order.
    @NotNull Condition
    Row5.in​(Row5<T1,​T2,​T3,​T4,​T5>... rows)
    Compare this row value expression with a set of row value expressions for equality.
    @NotNull Condition
    Row5.isDistinctFrom​(Row5<T1,​T2,​T3,​T4,​T5> row)
    Compare this row value expression with another row value expression for distinctness.
    @NotNull Condition
    Row5.isNotDistinctFrom​(Row5<T1,​T2,​T3,​T4,​T5> row)
    Compare this row value expression with another row value expression for distinctness.
    @NotNull Condition
    Row5.le​(Row5<T1,​T2,​T3,​T4,​T5> row)
    Compare this row value expression with another row value expression for order.
    @NotNull Condition
    Row5.lessOrEqual​(Row5<T1,​T2,​T3,​T4,​T5> row)
    Compare this row value expression with another row value expression for order.
    @NotNull Condition
    Row5.lessThan​(Row5<T1,​T2,​T3,​T4,​T5> row)
    Compare this row value expression with another row value expression for order.
    @NotNull Condition
    Row5.lt​(Row5<T1,​T2,​T3,​T4,​T5> row)
    Compare this row value expression with another row value expression for order.
    @NotNull Condition
    Row5.ne​(Row5<T1,​T2,​T3,​T4,​T5> row)
    Compare this row value expression with another row value expression for non-equality.
    @NotNull BetweenAndStep5<T1,​T2,​T3,​T4,​T5>
    Row5.notBetween​(Row5<T1,​T2,​T3,​T4,​T5> minValue)
    Check if this row value expression is not within a range of two other row value expressions.
    @NotNull Condition
    Row5.notBetween​(Row5<T1,​T2,​T3,​T4,​T5> minValue, Row5<T1,​T2,​T3,​T4,​T5> maxValue)
    Check if this row value expression is not within a range of two other row value expressions.
    @NotNull BetweenAndStep5<T1,​T2,​T3,​T4,​T5>
    Row5.notBetweenSymmetric​(Row5<T1,​T2,​T3,​T4,​T5> minValue)
    Check if this row value expression is not within a symmetric range of two other row value expressions.
    @NotNull Condition
    Row5.notBetweenSymmetric​(Row5<T1,​T2,​T3,​T4,​T5> minValue, Row5<T1,​T2,​T3,​T4,​T5> maxValue)
    Check if this row value expression is not within a symmetric range of two other row value expressions.
    @NotNull Condition
    Row5.notEqual​(Row5<T1,​T2,​T3,​T4,​T5> row)
    Compare this row value expression with another row value expression for non-equality.
    @NotNull Condition
    Row5.notIn​(Row5<T1,​T2,​T3,​T4,​T5>... rows)
    Compare this row value expression with a set of row value expressions for equality.
    @NotNull Statement
    Row5.set​(Row5<T1,​T2,​T3,​T4,​T5> row)
    Assign a value to this set of variables.
    <T1,​ T2,​ T3,​ T4,​ T5>
    @NotNull UpdateFromStep<R>
    UpdateSetFirstStep.set​(Row5<T1,​T2,​T3,​T4,​T5> row, Row5<T1,​T2,​T3,​T4,​T5> value)
    Specify a multi-column set clause for the UPDATE statement.
    <T1,​ T2,​ T3,​ T4,​ T5>
    @NotNull UpdateFromStep<R>
    UpdateSetFirstStep.set​(Row5<T1,​T2,​T3,​T4,​T5> row, Select<? extends Record5<T1,​T2,​T3,​T4,​T5>> select)
    Specify a multi-column set clause for the UPDATE statement.
    @NotNull InsertValuesStep5<R,​T1,​T2,​T3,​T4,​T5>
    InsertValuesStep5.values​(Row5<T1,​T2,​T3,​T4,​T5> values)
    Add a single row of values to the insert statement.
    @NotNull InsertValuesStep5<R,​T1,​T2,​T3,​T4,​T5>
    InsertValuesStep5.valuesOfRows​(Row5<T1,​T2,​T3,​T4,​T5>... values)
    Add multiple rows of values to the insert statement.
    Method parameters in org.jooq with type arguments of type Row5
    Modifier and Type
    Method
    Description
    @NotNull Condition
    Row5.in​(Collection<? extends Row5<T1,​T2,​T3,​T4,​T5>> rows)
    Compare this row value expression with a set of row value expressions for equality.
    @NotNull Condition
    Row5.notIn​(Collection<? extends Row5<T1,​T2,​T3,​T4,​T5>> rows)
    Compare this row value expression with a set of row value expressions for equality.
    @NotNull InsertValuesStep5<R,​T1,​T2,​T3,​T4,​T5>
    InsertValuesStep5.valuesOfRows​(Collection<? extends Row5<T1,​T2,​T3,​T4,​T5>> values)
    Add multiple rows of values to the insert statement.
  • Uses of Row5 in org.jooq.impl

    Methods in org.jooq.impl that return Row5
    Modifier and Type
    Method
    Description
    static <T1,​ T2,​ T3,​ T4,​ T5>
    @NotNull Row5<T1,​T2,​T3,​T4,​T5>
    DSL.row​(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5)
    Create a row value expression of degree 5.
    static <T1,​ T2,​ T3,​ T4,​ T5>
    @NotNull Row5<T1,​T2,​T3,​T4,​T5>
    DSL.row​(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5)
    Create a row value expression of degree 5.
    Methods in org.jooq.impl with parameters of type Row5
    Modifier and Type
    Method
    Description
    static <T1,​ T2,​ T3,​ T4,​ T5>
    @NotNull Field<Record5<T1,​T2,​T3,​T4,​T5>>
    DSL.rowField​(Row5<T1,​T2,​T3,​T4,​T5> row)
    Deprecated, for removal: This API element is subject to removal in a future version.
    - [#11812] - 3.15.0 - Use Row5 as a SelectField directly, instead.
    static <T1,​ T2,​ T3,​ T4,​ T5>
    @NotNull Table<Record5<T1,​T2,​T3,​T4,​T5>>
    DSL.values​(Row5<T1,​T2,​T3,​T4,​T5>... rows)
    Create a VALUES() expression of degree 5.