Uses of Interface
jakarta.data.constraint.Like

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

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

    Methods in jakarta.data.expression with parameters of type Like
    Modifier and Type
    Method
    Description
    default Restriction<T>
    TextExpression.like(Like pattern)
    Obtains a Restriction that requires that this expression evaluate to a value that is like the specified pattern.