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 predicate@FunctionalInterface public interface Predicate3<A,B,C>
This is afunctional interface whose functional method is
test(Object, Object, Object).
Predicate,
BiPredicate| Modifier and Type | Method and Description |
|---|---|
boolean |
test(A a,
B b,
C c)
Evaluates this predicate on the given arguments.
|
Copyright © 2018 Atlassian. All rights reserved.