T - the type of the first argument to the predicateU - the type of the second argument the predicate@FunctionalInterface public interface BiPredicateEx<T,U> extends BiPredicate<T,U>, Serializable
Serializable variant of java.util.function.BiPredicate which declares checked exception.| Modifier and Type | Method and Description | 
|---|---|
default BiPredicateEx<T,U> | 
and(BiPredicateEx<? super T,? super U> other)
Serializable variant of java.util.function.BiPredicate#and(BiPredicate). | 
default BiPredicateEx<T,U> | 
negate()
Serializable variant of java.util.function.BiPredicate#negate(). | 
default BiPredicateEx<T,U> | 
or(BiPredicateEx<? super T,? super U> other)
Serializable variant of java.util.function.BiPredicate#or(BiPredicate). | 
default boolean | 
test(T t,
    U u)  | 
boolean | 
testEx(T t,
      U u)
Exception-declaring version of  
BiPredicate.test(T, U). | 
and, orboolean testEx(T t, U u) throws Exception
BiPredicate.test(T, U).Exception - in case of any exceptional casedefault BiPredicateEx<T,U> and(BiPredicateEx<? super T,? super U> other)
Serializable variant of java.util.function.BiPredicate#and(BiPredicate).default BiPredicateEx<T,U> negate()
Serializable variant of java.util.function.BiPredicate#negate().negate in interface BiPredicate<T,U>default BiPredicateEx<T,U> or(BiPredicateEx<? super T,? super U> other)
Serializable variant of java.util.function.BiPredicate#or(BiPredicate).Copyright © 2022 Hazelcast, Inc.. All rights reserved.