A - the type of the first argument to the predicateB - the type of the second argument to the predicateC - the type of the third argument to the predicateD - the type of the forth argument to the predicate@FunctionalInterface public interface QuadPredicate<A,B,C,D>
| Modifier and Type | Method and Description |
|---|---|
boolean |
test(A first,
B second,
C third,
D fourth)
Evaluates this predicate on the given arguments.
|
boolean test(A first, B second, C third, D fourth)
first - the first argument to the operationsecond - the second argument to the operationthird - the third argument to the operationfourth - the fourth argument to the operationtrue if the input arguments match the predicate, otherwise falseCopyright © 2017. All rights reserved.