@FunctionalInterface
public interface BooleanOperator3
Modifier and Type | Method and Description |
---|---|
default BooleanOperator3 |
andThen(BooleanOperator1 after)
Create a function which applies this function and feeds the result into the next function.
|
boolean |
applyAsBoolean(boolean arg1,
boolean arg2,
boolean arg3)
Apply the function.
|
default BooleanOperator2 |
partialLeft(boolean argument)
Get a partially applied function.
|
default BooleanOperator2 |
partialMid(boolean argument)
Get a partially applied function.
|
default BooleanOperator2 |
partialRight(boolean argument)
Get a partially applied function.
|
boolean applyAsBoolean(boolean arg1, boolean arg2, boolean arg3)
arg1
- first argumentarg2
- second argumentarg3
- third argument@NotNull default BooleanOperator2 partialLeft(boolean argument)
argument
- value applied for first argument@NotNull default BooleanOperator2 partialMid(boolean argument)
argument
- value applied for second argument@NotNull default BooleanOperator2 partialRight(boolean argument)
argument
- value applied for third argument@NotNull default BooleanOperator3 andThen(@NotNull BooleanOperator1 after)
after
- function called with the result of this function