Class Filtersection<T>

  • All Implemented Interfaces:
    java.util.function.Predicate<T>

    public class Filtersection<T>
    extends java.lang.Object
    implements java.util.function.Predicate<T>
    intersection of two filters
    • Constructor Summary

      Constructors 
      Constructor Description
      Filtersection​(java.util.function.Predicate<T> a, java.util.function.Predicate<T> b)  
    • Method Summary

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

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface java.util.function.Predicate

        and, negate, or
    • Constructor Detail

      • Filtersection

        public Filtersection​(java.util.function.Predicate<T> a,
                             java.util.function.Predicate<T> b)
    • Method Detail

      • test

        public boolean test​(T o)
        Specified by:
        test in interface java.util.function.Predicate<T>