T - the type of the first argument to the functionU - the type of the second argument to the functionV - the type of the third argument to the function@FunctionalInterface
public interface TriConsumer<T,U,V>
Consumer.
This is a functional interface whose functional method is
accept(Object, Object, Object).
Consumer| Modifier and Type | Method and Description |
|---|---|
void |
accept(T firstParam,
U secondParam,
V thirdParam)
Performs operation on the given arguments.
|