Uses of Interface
org.apache.commons.lang3.function.TriConsumer
-
Packages that use TriConsumer 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 TriConsumer in org.apache.commons.lang3.function
Methods in org.apache.commons.lang3.function that return TriConsumer Modifier and Type Method Description default TriConsumer<T,U,V>
TriConsumer. andThen(TriConsumer<? super T,? super U,? super V> after)
Returns a composedTriConsumer
that performs, in sequence, this operation followed by theafter
operation.Methods in org.apache.commons.lang3.function with parameters of type TriConsumer Modifier and Type Method Description default TriConsumer<T,U,V>
TriConsumer. andThen(TriConsumer<? super T,? super U,? super V> after)
Returns a composedTriConsumer
that performs, in sequence, this operation followed by theafter
operation.
-