Interface MatchPredicateMatchingGenericStep<N extends MatchPredicateOptionsStep<?>,T>

Type Parameters:
N - The type of the next step.
T - The type of the match value.
All Known Subinterfaces:
MatchPredicateFieldMoreGenericStep<S,N,T,V>, MatchPredicateFieldMoreStep<S,N>, MatchPredicateMatchingStep<N>

public interface MatchPredicateMatchingGenericStep<N extends MatchPredicateOptionsStep<?>,T>
The step in a "match" predicate definition where the value to match can be set.
  • Method Summary

    Modifier and Type
    Method
    Description
    matching(T value)
    Require at least one of the targeted fields to match the given value.
  • Method Details

    • matching

      N matching(T value)
      Require at least one of the targeted fields to match the given value.
      Parameters:
      value - The value to match. The signature of this method defines this parameter as an T, but a specific type is expected depending on the targeted field.
      Returns:
      The next step.