Interface TriConsumer<K,V,S>

Type Parameters:
K - type of the first argument
V - type of the second argument
S - type of the third argument

public interface TriConsumer<K,V,S>
An operation that accepts three input arguments and returns no result.
Since:
2.7
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(K k, V v, S s)
    Performs the operation given the specified arguments.
  • Method Details

    • accept

      void accept(K k, V v, S s)
      Performs the operation given the specified arguments.
      Parameters:
      k - the first input argument
      v - the second input argument
      s - the third input argument