Interface TriConsumer<T,V,K>

Type Parameters:
T - Type of first argument
V - Type of second argument
K - Type of third argument.

public interface TriConsumer<T,V,K>
Functional interface for three arguments, similar to BiConsumer.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(T t, V v, K k)
     
  • Method Details

    • accept

      void accept(T t, V v, K k)