T - the type of the first object parameterU - the type of the second object parameterV - the type of the third object parameter@FunctionalInterface public interface TriConsumer<T,U,V>
| Modifier and Type | Method and Description |
|---|---|
void |
accept(T t,
U u,
V v)
Applies this consumer to the given arguments.
|
default TriConsumer<T,U,V> |
andThen(TriConsumer<? super T,? super U,? super V> after)
Returns a new consumer that composes this consumer and the specified consumer.
|
void accept(T t, U u, V v)
t - the first consumer argumentu - the second consumer argumentv - the third consumer argumentdefault TriConsumer<T,U,V> andThen(TriConsumer<? super T,? super U,? super V> after)
This returns a composed consumer that first calls this consumer and then calls the specified consumer.
after - the consumer to combine withCopyright 2009-Present by OpenGamma Inc. and individual contributors
Apache v2 licensed
Additional documentation can be found at strata.opengamma.io.