Uses of Interface
jakarta.data.constraint.AtMost

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

    Methods in jakarta.data.constraint that return AtMost
    Modifier and Type
    Method
    Description
    static <V extends Comparable<?>>
    AtMost<V>
    Constraint.lessThanEqual(V maximum)
    Requires that the constraint target evaluates to a value that is less than or equal to the given maximum.
    static <V extends Comparable<?>>
    AtMost<V>
    AtMost.max(ComparableExpression<?,V> maximum)
    Requires that the constraint target evaluates to a value that is less than or equal the value to which the the given maximum expression evaluates.
    static <V extends Comparable<?>>
    AtMost<V>
    AtMost.max(V maximum)
    Requires that the constraint target evaluates to a value that is less than or equal to the given maximum.