Uses of Interface
org.apache.commons.lang3.function.BooleanConsumer
-
Packages that use BooleanConsumer Package Description org.apache.commons.lang3.function Provides functional interfaces to complement those injava.lang.function
and utilities for working with Java 8 lambdas. -
-
Uses of BooleanConsumer in org.apache.commons.lang3.function
Fields in org.apache.commons.lang3.function declared as BooleanConsumer Modifier and Type Field Description static BooleanConsumer
BooleanConsumer. NOP
NOP singletonMethods in org.apache.commons.lang3.function that return BooleanConsumer Modifier and Type Method Description default BooleanConsumer
BooleanConsumer. andThen(BooleanConsumer after)
Returns a composedBooleanConsumer
that performs, in sequence, this operation followed by theafter
operation.static BooleanConsumer
BooleanConsumer. nop()
Returns The NOP singleton.Methods in org.apache.commons.lang3.function with parameters of type BooleanConsumer Modifier and Type Method Description default BooleanConsumer
BooleanConsumer. andThen(BooleanConsumer after)
Returns a composedBooleanConsumer
that performs, in sequence, this operation followed by theafter
operation.
-