void | 
UpdateQuery.addValues(RowN row,
         RowN value) | 
 Specify a multi-column set clause for the UPDATE statement. 
 | 
void | 
UpdateQuery.addValues(RowN row,
         Select<?> 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 
 | 
@NotNull BetweenAndStepN | 
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. 
 | 
@NotNull BetweenAndStepN | 
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 | 
RowN.isNotDistinctFrom(RowN row) | 
 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. 
 | 
@NotNull BetweenAndStepN | 
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. 
 | 
@NotNull BetweenAndStepN | 
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 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<?> select) | 
 Specify a multi-column set clause for the UPDATE statement. 
 |