@FunctionalInterface
public interface TriConsumer<A, B, C>
A Consumer of three input arguments —
the three-argument cousin of BiConsumer
that java.util.function itself does not provide.
A - the first argument typeB - the second argument typeC - the third argument type| Type Params | Return Type | Name and description |
|---|---|---|
|
public void |
accept(A a, B b, C c)Performs the operation on the given arguments. |