A - type of the first parameterB - type of the second parameterC - type of the third parameterD - type of the fourth parameterE - type of the fifth parameter@FunctionalInterface public interface BooleanFunction5<A,B,C,D,E> extends ConstraintFunction
| Modifier and Type | Method and Description |
|---|---|
boolean |
apply(A a,
B b,
C c,
D d,
E e)
Checks whether the value combination give for the parameters is allowed.
|
default boolean |
check(List<?> arguments)
Checks whether the given values are a valid combination or one which should not appear.
|
default boolean check(List<?> arguments)
ConstraintFunctioncheck in interface ConstraintFunctionarguments - the valuestrue iff the values form a valid combinationboolean apply(A a, B b, C c, D d, E e)
a - the value for the first parameterb - the value for the second parameterc - the value for the third parameterd - the value for the fourth parameterse - the value for the fifth parametersCopyright © 2019. All rights reserved.