A - type of the first parameterB - type of the second parameterC - type of the third parameterD - type of the fourth parameter@FunctionalInterface public interface BooleanFunction4<A,B,C,D> extends ConstraintFunction
| Modifier and Type | Method and Description |
|---|---|
boolean |
apply(A a,
B b,
C c,
D d)
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)
a - the value for the first parameterb - the value for the second parameterc - the value for the third parameterd - the value for the fourth parametersCopyright © 2019. All rights reserved.