Class PairPredicate<T1,​T2>

  • All Implemented Interfaces:
    java.io.Serializable, java.util.function.BiPredicate<T1,​T2>, java.util.function.Predicate<Pair<T1,​T2>>, Predicate<Pair<T1,​T2>>, Predicate2<T1,​T2>

    public abstract class PairPredicate<T1,​T2>
    extends java.lang.Object
    implements Predicate<Pair<T1,​T2>>, Predicate2<T1,​T2>
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private static long serialVersionUID  
    • Constructor Summary

      Constructors 
      Constructor Description
      PairPredicate()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean accept​(Pair<T1,​T2> pair)  
      PairPredicate<T1,​T2> negate()  
      • 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.BiPredicate

        and, or
      • Methods inherited from interface java.util.function.Predicate

        and, or
      • Methods inherited from interface org.eclipse.collections.api.block.predicate.Predicate

        test
    • Constructor Detail

      • PairPredicate

        public PairPredicate()
    • Method Detail

      • negate

        public PairPredicate<T1,​T2> negate()
        Specified by:
        negate in interface java.util.function.BiPredicate<T1,​T2>
        Specified by:
        negate in interface java.util.function.Predicate<T1>