Uses of Interface
jakarta.data.constraint.NotBetween
Packages that use NotBetween
Package
Description
-
Uses of NotBetween in jakarta.data.constraint
Methods in jakarta.data.constraint that return NotBetweenModifier and TypeMethodDescriptionstatic <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 givenlowerexpression evaluates or greater than the value to which the givenupperexpression 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 givenlowerexpression evaluates or greater than the givenupperbound.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 givenlowerbound or greater than the value to which the givenupperexpression 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 givenlowerbound or greater than the givenupperbound.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 givenlowerBoundor greater than the givenupperBound.