Class IsNullPredicate

  • All Implemented Interfaces:
    Predicate<java.lang.Object>

    public class IsNullPredicate
    extends java.lang.Object
    implements Predicate<java.lang.Object>
    A function that tests whether an object is null.
    • Constructor Summary

      Constructors 
      Constructor Description
      IsNullPredicate()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean test​(java.lang.Object toTest)  
      • Methods inherited from class java.lang.Object

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

      • IsNullPredicate

        public IsNullPredicate()
    • Method Detail

      • test

        public boolean test​(java.lang.Object toTest)
        Specified by:
        test in interface Predicate<java.lang.Object>