Uses of Interface
org.jooq.Row6

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

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

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