Uses of Interface
jakarta.data.constraint.NotIn
Packages that use NotIn
Package
Description
-
Uses of NotIn in jakarta.data.constraint
Methods in jakarta.data.constraint that return NotInModifier and TypeMethodDescriptionstatic <V> NotIn<V> NotIn.expressions(Expression<?, V>... expressions) Requires that the constraint target not equal any of the values to which the givenexpressionsevaluate.static <V> NotIn<V> NotIn.expressions(List<Expression<?, V>> expressions) Requires that the constraint target not equal any of the values to which the givenexpressionsevaluate.static <V> NotIn<V> Requires that the constraint target evaluates to a value that is not equal to any of the givenvalues.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 givenvalues.static <V> NotIn<V> NotIn.values(Collection<V> values) Requires that the constraint target not equal any of the givenvalues.static <V> NotIn<V> NotIn.values(V... values) Requires that the constraint target not equal any of the givenvalues.