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 fourth argument to the predicateE - the type of the fifth argument to the predicateF - the type of the sixth argument to the predicate@FunctionalInterface public interface Predicate6<A,B,C,D,E,F>
This is afunctional interface whose functional method is
test(Object, Object, Object, Object, Object, Object).
Predicate,
BiPredicate| Modifier and Type | Method and Description |
|---|---|
boolean |
test(A a,
B b,
C c,
D d,
E e,
F f)
Evaluates this predicate on the given arguments.
|
boolean test(A a, B b, C c, D d, E e, F f)
a - the first input argumentb - the second input argumentc - the third input argumentd - the fourth input argumente - the fifth input argumentf - the sixth input argumenttrue if the input arguments match the predicate, otherwise
falseCopyright © 2018 Atlassian. All rights reserved.