Class NoneOf<T>

  • All Implemented Interfaces:
    Predicate<T>

    public final class NoneOf<T>
    extends DelegatingPredicate<T>
    A Predicate which matches if none of another sequence of predicates matches. This is equivalent to the boolean "NOR" operation.
    • Constructor Summary

      Constructors 
      Constructor Description
      NoneOf​(java.lang.Iterable<? extends Predicate<? super T>> delegate)  
      NoneOf​(Predicate<? super T>... delegates)  
      NoneOf​(T... delegates)  
    • Method Summary

      • Methods inherited from class java.lang.Object

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

      • NoneOf

        @SafeVarargs
        public NoneOf​(T... delegates)
      • NoneOf

        @SafeVarargs
        public NoneOf​(Predicate<? super T>... delegates)
      • NoneOf

        public NoneOf​(java.lang.Iterable<? extends Predicate<? super T>> delegate)