Uses of Interface
jakarta.data.constraint.NotLike

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

    Methods in jakarta.data.constraint that return NotLike
    Modifier and Type
    Method
    Description
    static NotLike
    NotLike.literal(String value)
    Requires that the constraint target not consist of the same characters as the given value.
    static NotLike
    Constraint.notLike(String pattern)
    Requires that the constraint target does not match the given pattern, in which _ and % represent wildcards.
    static NotLike
    Constraint.notLike(String pattern, char charWildcard, char stringWildcard)
    Requires that the constraint target does not match the given pattern, in which the given characters represent wildcards.
    static NotLike
    Constraint.notLike(String pattern, char charWildcard, char stringWildcard, char escape)
    Requires that the constraint target does not match the given pattern, in which the given characters represent wildcards and escape.
    static NotLike
    NotLike.pattern(TextExpression<?> pattern, char escape)
    Requires that the constraint target not match the given pattern expression, in which _ and % represent wildcards and the given character represents escape.
    static NotLike
    NotLike.pattern(String pattern)
    Requires that the constraint target not match the given pattern, in which _ and % represent wildcards.
    static NotLike
    NotLike.pattern(String pattern, char charWildcard, char stringWildcard)
    Requires that the constraint target not match the given pattern, in which the given characters represent wildcards.
    static NotLike
    NotLike.pattern(String pattern, char charWildcard, char stringWildcard, char escape)
    Requires that the constraint target not match the given pattern, in which the given characters represent wildcards and escape.
    static NotLike
    NotLike.prefix(String prefix)
    Requires that the constraint target not begin with the given prefix.
    static NotLike
    NotLike.substring(String substring)
    Requires that the constraint target not contain the given substring.
    static NotLike
    NotLike.suffix(String suffix)
    Requires that the constraint target not end with the given suffix.