Interface TriConsumer<K,V,S>

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

public interface TriConsumer<K,V,S>
A functional interface that takes three arguments and returns no result.
  • Method Summary

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

    • accept

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