@FunctionalInterface
public interface BooleanOperator1
Modifier and Type | Field and Description |
---|---|
static BooleanOperator1 |
NOT
The standard boolean NOT (
! ) |
Modifier and Type | Method and Description |
---|---|
default BooleanOperator1 |
andThen(BooleanOperator1 after)
Create a function which applies this function and feeds the result into the next function.
|
boolean |
applyAsBoolean(boolean value)
Apply the function.
|
default BooleanOperator0 |
partial(boolean argument)
Create a zero argument function from this one by applying a constant argument.
|
@NotNull static final BooleanOperator1 NOT
!
) operator.boolean applyAsBoolean(boolean value)
value
- parameter value of the function@NotNull default BooleanOperator0 partial(boolean argument)
argument
- constant argument@NotNull default BooleanOperator1 andThen(@NotNull BooleanOperator1 after)
after
- function called with the result of this function