Package com.hazelcast.jet.function
Interface TriPredicate<T,U,V>  
- Type Parameters:
- T- the type of the first argument to the predicate
- U- the type of the second argument to the predicate
- V- the type of the third argument to the predicate
- All Superinterfaces:
- Serializable
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Represents a predicate which accepts three arguments. This
 is the three-arity specialization of 
Predicate.- Since:
- Jet 3.0
- 
Method SummaryModifier and TypeMethodDescriptiondefault TriPredicate<T,U, V> and(TriPredicate<? super T, ? super U, ? super V> other) Returns a composite predicate which evaluates the equivalent ofthis.test(t, u, v) && other.test(t, u, v).default TriPredicate<T,U, V> negate()Returns a composite predicate which evaluates the equivalent of!this.test(t, u, v).default TriPredicate<T,U, V> or(TriPredicate<? super T, ? super U, ? super V> other) Returns a composite predicate which evaluates the equivalent ofthis.test(t, u, v) || other.test(t, u, v).default booleanEvaluates this predicate with the given arguments.booleanException-declaring version oftest(T, U, V).
- 
Method Details- 
testExException-declaring version oftest(T, U, V).- Throws:
- Exception
 
- 
testEvaluates this predicate with the given arguments.- Parameters:
- t- the first argument
- u- the second argument
- v- the third argument
- Returns:
- trueif predicate evaluated to true,- falseotherwise
 
- 
andReturns a composite predicate which evaluates the equivalent ofthis.test(t, u, v) && other.test(t, u, v).
- 
negateReturns a composite predicate which evaluates the equivalent of!this.test(t, u, v).
- 
orReturns a composite predicate which evaluates the equivalent ofthis.test(t, u, v) || other.test(t, u, v).
 
-