Uses of Interface
jakarta.data.constraint.NotBetween

Packages that use NotBetween
Package
Description
Constraints for parameter-based Find and Delete methods.
  • Uses of NotBetween in jakarta.data.constraint

    Methods in jakarta.data.constraint that return NotBetween
    Modifier and Type
    Method
    Description
    static <V extends Comparable<?>>
    NotBetween<V>
    NotBetween.bounds(ComparableExpression<?,V> lower, ComparableExpression<?,V> upper)
    Requires that the constraint target evaluates to a value that is less than the value to which the given lower expression evaluates or greater than the value to which the given upper expression evaluates.
    static <V extends Comparable<?>>
    NotBetween<V>
    NotBetween.bounds(ComparableExpression<?,V> lower, V upper)
    Requires that the constraint target evaluates to a value that is less than the value to which the given lower expression evaluates or greater than the given upper bound.
    static <V extends Comparable<?>>
    NotBetween<V>
    NotBetween.bounds(V lower, ComparableExpression<?,V> upper)
    Requires that the constraint target evaluates to a value that is less than the given lower bound or greater than the value to which the given upper expression evaluates.
    static <V extends Comparable<?>>
    NotBetween<V>
    NotBetween.bounds(V lower, V upper)
    Requires that the constraint target evaluates to a value that is less than the given lower bound or greater than the given upper bound.
    static <V extends Comparable<?>>
    NotBetween<V>
    Constraint.notBetween(V lowerBound, V upperBound)
    Requires that the constraint target evaluates to a value that is less than the given lowerBound or greater than the given upperBound.