@FunctionalInterface public interface BooleanConsumer
Boolean-valued argument and returns no result. This is the
primitive type specialization of Consumer for Boolean. Unlike most other functional
interfaces, BooleanConsumer is expected to operate via side-effects.
This is a functional interface whose functional method is
accept(Boolean).
Consumer| Modifier and Type | Method and Description |
|---|---|
void |
accept(Boolean value)
Performs this operation on the given argument.
|
void accept(Boolean value)
value - the input argumentCopyright © 2024. All rights reserved.