Uses of Interface
jakarta.data.constraint.NotIn

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

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