Module org.jooq
Package org.jooq

Interface BetweenAndStep2<T1,​T2>


public interface BetweenAndStep2<T1,​T2>
An intermediate DSL type for the construction of a BETWEEN predicate.
Author:
Lukas Eder
  • Method Summary

    Modifier and Type
    Method
    Description
    @NotNull Condition
    and​(Field<T1> maxValue1, Field<T2> maxValue2)
    Create a condition to check this field against some bounds
    @NotNull Condition
    and​(Record2<T1,​T2> maxValue)
    Create a condition to check this field against some bounds
    @NotNull Condition
    and​(Row2<T1,​T2> maxValue)
    Create a condition to check this field against some bounds
    @NotNull Condition
    and​(T1 maxValue1, T2 maxValue2)
    Create a condition to check this field against some bounds
  • Method Details

    • and

      @NotNull @Support @NotNull Condition and(Field<T1> maxValue1, Field<T2> maxValue2)
      Create a condition to check this field against some bounds
    • and

      @NotNull @Support @NotNull Condition and(T1 maxValue1, T2 maxValue2)
      Create a condition to check this field against some bounds
    • and

      @NotNull @Support @NotNull Condition and(Row2<T1,​T2> maxValue)
      Create a condition to check this field against some bounds
    • and

      @NotNull @Support @NotNull Condition and(Record2<T1,​T2> maxValue)
      Create a condition to check this field against some bounds