Interface Matchable<T>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      int getCost()
      Returns a cost estimate to run this predicate, higher figures cost more.
      boolean match​(T object)
      Does this predicate match this object?
    • Method Detail

      • match

        boolean match​(T object)
        Does this predicate match this object?
      • getCost

        int getCost()
        Returns a cost estimate to run this predicate, higher figures cost more.