Package 

Interface Predicate


  • 
    public interface Predicate<T extends Object>
    
                        

    A Predicate can determine a true or false value for any input of its parameterized type. This used internally inside the SDK.

    • Method Summary

      Modifier and Type Method Description
      abstract Boolean predicate(T data) Determine a true or false value for any input of its parameterized type.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • predicate

         abstract Boolean predicate(T data)

        Determine a true or false value for any input of its parameterized type.