- 
- Type Parameters:
- A- first argument type
- B- second argument type
- C- thrid argument type
 - All Superinterfaces:
- Functions.BiPredicate<A,B>,- Functions.Predicate<A>
 - All Known Subinterfaces:
- Functions.QuadriPredicate<A,B,C,D>
 - Enclosing class:
- Functions
 - Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
 
 @FunctionalInterface public static interface Functions.TriPredicate<A,B,C> extends Functions.BiPredicate<A,B> Represents a predicate of three argument.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default booleantest(A a, B b)Evaluates this predicate on the given arguments.booleantest(A a, B b, C c)Evaluates this predicate on the given arguments.- 
Methods inherited from interface aeonics.util.Functions.BiPredicatetest
 
- 
 
- 
- 
- 
Method Detail- 
testdefault boolean test(A a, B b) throws java.lang.Exception Description copied from interface:Functions.BiPredicateEvaluates this predicate on the given arguments.- Specified by:
- testin interface- Functions.BiPredicate<A,B>
- Parameters:
- a- the input argument
- b- the input argument
- Returns:
- true if the input arguments match the predicate
- Throws:
- java.lang.Exception- if an error happens
 
 
- 
 
-