Interface TriConsumer<T,V,K>
-
- Type Parameters:
T
- Type of first argumentV
- Type of second argumentK
- Type of third argument.
public interface TriConsumer<T,V,K>
Functional interface for three arguments, similar to BiConsumer.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
accept(T t, V v, K k)
-