Interface EqualTypeMatchFunction.Matcher<PARAM_T extends AttributeValue>

Type Parameters:
PARAM_T - type of arguments to be matched against each other
All Known Implementing Classes:
EqualTypeMatchFunction.EqualIgnoreCaseMatcher, EqualTypeMatchFunction.EqualMatcher
Enclosing class:
EqualTypeMatchFunction<PARAM extends AttributeValue>

public static interface EqualTypeMatchFunction.Matcher<PARAM_T extends AttributeValue>
Generic match method interface
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    match(PARAM_T arg0, PARAM_T arg1)
    Match two arguments (same type)
  • Method Details

    • match

      boolean match(PARAM_T arg0, PARAM_T arg1)
      Match two arguments (same type)
      Parameters:
      arg0 - first argument
      arg1 - second argument to be matched against the first one
      Returns:
      true iff arguments match (match algorithm is implementation-specific)