Uses of Interface
jakarta.data.constraint.In

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

    Methods in jakarta.data.constraint that return In
    Modifier and Type
    Method
    Description
    static <V> In<V>
    In.expressions(Expression<?,V>... expressions)
    Requires that the constraint target equal one of the values to which the given expressions evaluate.
    static <V> In<V>
    In.expressions(List<Expression<?,V>> expressions)
    Requires that the constraint target equal one of the values to which the given expressions evaluate.
    static <V> In<V>
    Constraint.in(Set<V> values)
    Requires that the constraint target evaluates to a value that is equal to one of the given values.
    static <V> In<V>
    Constraint.in(V... values)
    Requires that the constraint target evaluates to a value that is equal to one of the given values.
    static <V> In<V>
    In.values(Collection<V> values)
    Requires that the constraint target equal one of the given values.
    static <V> In<V>
    In.values(V... values)
    Requires that the constraint target equal one of the given values.