Package org.jooq

Interface BetweenAndStepN


  • public interface BetweenAndStepN
    An intermediate DSL type for the construction of a BETWEEN predicate.
    Author:
    Lukas Eder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      Condition and​(java.lang.Object... maxValues)
      Create a condition to check this field against some bounds
      Condition and​(Field<?>... maxValues)
      Create a condition to check this field against some bounds
      Condition and​(Record maxValue)
      Create a condition to check this field against some bounds
      Condition and​(RowN maxValue)
      Create a condition to check this field against some bounds
    • Method Detail

      • and

        @Support
        Condition and​(Field<?>... maxValues)
        Create a condition to check this field against some bounds
      • and

        @Support
        Condition and​(java.lang.Object... maxValues)
        Create a condition to check this field against some bounds
      • and

        @Support
        Condition and​(RowN maxValue)
        Create a condition to check this field against some bounds