Uses of Interface
org.jooq.Row1

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

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

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