Interface WildcardPredicateMatchingStep<N extends WildcardPredicateOptionsStep<?>>

Type Parameters:
N - The type of the next step.
All Known Subinterfaces:
WildcardPredicateFieldMoreStep<S,N>

public interface WildcardPredicateMatchingStep<N extends WildcardPredicateOptionsStep<?>>
The step in a "wildcard" predicate definition where the pattern to match can be set.
  • Method Summary

    Modifier and Type
    Method
    Description
    matching(String wildcardPattern)
    Require at least one of the targeted fields to match the given wildcard pattern.
  • Method Details

    • matching

      N matching(String wildcardPattern)
      Require at least one of the targeted fields to match the given wildcard pattern.
      Parameters:
      wildcardPattern - The pattern to match. Supported wildcards are *, which matches any character sequence (including the empty one), and ?, which matches any single character. \ is the escape character.
      Returns:
      The next step.