Interface Ref7ToBooleanFunction<A,B,C,D,E,F,G>
- Type Parameters:
A- An input parameter typeB- An input parameter typeC- An input parameter typeD- An input parameter typeE- An input parameter typeF- An input parameter typeG- An input parameter type
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A function that accepts 7 generic input parameters and returns
a
boolean.- Since:
- 1.2
-
Method Summary
Modifier and TypeMethodDescriptionbooleanApplies the function.negate()Returns a Ref7ToBooleanFunction that represents!this.apply(...).static <A,B, C, D, E, F, G>
Ref7ToBooleanFunction<A, B, C, D, E, F, G> not(Ref7ToBooleanFunction<A, B, C, D, E, F, G> func) Returns a Ref7ToBooleanFunction that represents!func.apply(...).
-
Method Details
-
apply
-
negate
-
not
static <A,B, Ref7ToBooleanFunction<A,C, D, E, F, G> B, notC, D, E, F, G> (Ref7ToBooleanFunction<A, B, C, D, E, F, G> func) Returns a Ref7ToBooleanFunction that represents!func.apply(...).- Type Parameters:
A- A function parameter typeB- A function parameter typeC- A function parameter typeD- A function parameter typeE- A function parameter typeF- A function parameter typeG- A function parameter type- Parameters:
func- The function to negate. Must not benull.- Returns:
- The logical negation of the specified function.
- Throws:
NullPointerException- If the specified function isnull.
-