Package Torello.Java.Function
Interface BoolConsumer
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface BoolConsumer
Function-Pointer Input:boolean
Output:void
.
This is an extension ofjava.util.function.*
. This consumer accepts a'boolean'
as input to its'accept'
method.
Hi-Lited Source-Code:- View Here: Torello/Java/Function/BoolConsumer.java
- Open New Browser-Tab: Torello/Java/Function/BoolConsumer.java
File Size: 1,227 Bytes Line Count: 40 '\n' Characters Found
-
-
Method Summary
@FunctionalInterface: (Lambda) Method Modifier and Type Method void
accept(boolean b)
Default Composition & Builder Method(s) Modifier and Type Method default BoolConsumer
andThen(BoolConsumer after)
-
-
-
Method Detail
-
accept
void accept(boolean b)
Performs this operation on the given argument.
FunctionalInterface Target-Method:
This method corresponds to the@FunctionalInterface
Annotation's method requirement. It is the only non-default
, non-static
method in this interface, and may be the target of a Lambda-Expression or'::'
(double-colon) Function-Pointer.- Parameters:
b
-boolean
input-argument.
-
andThen
default BoolConsumer andThen(BoolConsumer after)
Returns a composed consumer that performs, in sequence,'this'
operation followed by the after operation. If performing either operation throws an exception, it is relayed to the caller of the composed operation. If performing this operation throws an exception, the'after'
operation will not be performed.- Parameters:
after
- The operation to perform after this operation- Returns:
- A composed consumer that performs in sequence
'this'
operation followed by the'after'
operation. - Throws:
java.lang.NullPointerException
- if parameter'other'
is null.- Code:
- Exact Method Body:
if (after == null) throw new NullPointerException("null has been passed to parameter 'after'"); return (boolean b) -> { this.accept(b); after.accept(b); };
-
-