Class Predicates.ExcludedPredicate<T>

  • All Implemented Interfaces:
    Predicate<T>
    Enclosing class:
    Predicates

    public static final class Predicates.ExcludedPredicate<T>
    extends java.lang.Object
    implements Predicate<T>
    Since:
    3.4
    Author:
    Eike Stepper
    • Constructor Summary

      Constructors 
      Constructor Description
      ExcludedPredicate​(java.util.Set<T> exclusions)  
    • Method Summary

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

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

      • ExcludedPredicate

        public ExcludedPredicate​(java.util.Set<T> exclusions)
    • Method Detail

      • apply

        public boolean apply​(T element)
        Specified by:
        apply in interface Predicate<T>