Uses of Interface
org.jooq.RowN

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

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

    Methods in org.jooq.impl that return RowN
    Modifier and Type
    Method
    Description
    static @NotNull RowN
    DSL.row(Object... values)
    Create a row value expression of degree N > 22.
    static @NotNull RowN
    DSL.row(Collection<?> values)
    Create a row value expression of degree N > 22.
    static @NotNull RowN
    DSL.row(SelectField<?>... values)
    Create a row value expression of degree N > 22.
    Methods in org.jooq.impl with parameters of type RowN
    Modifier and Type
    Method
    Description
    static @NotNull Field<Record>
    DSL.rowField(RowN row)
    Deprecated, for removal: This API element is subject to removal in a future version.
    - [#11812] - 3.15.0 - Use RowN as a SelectField directly, instead.
    static @NotNull Table<Record>
    DSL.values(RowN... rows)
    Create a VALUES() expression of arbitrary degree.