@FunctionalInterface public interface ObjBooleanConsumer<T>
Boolean-valued argument, and returns no result. This is the
(reference, long) specialization of BiConsumer for Boolean. Unlike most other functional
interfaces, ObjBooleanConsumer is expected to operate via side effects.
This is a functional interface whose functional method is
accept(Object, Boolean).
BiConsumer| Modifier and Type | Method and Description |
|---|---|
void |
accept(T t,
Boolean value)
Performs this operation on the given arguments.
|
Copyright © 2024. All rights reserved.