Interface FilterPredicate

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Interface Description
      static interface  FilterPredicate.Visitor<R>
      A FilterPredicate Visitor must visit all the operators in a FilterPredicate expression tree, and must handle recursion itself, per the visitor pattern.
    • Method Detail

      • accept

        <R> R accept​(FilterPredicate.Visitor<R> visitor)
        A FilterPredicate must accept a Visitor, per the visitor pattern.
        Type Parameters:
        R - return type of the visitor
        Parameters:
        visitor - a visitor
        Returns:
        the return value of Visitor#visit(this)