Interface TriConsumer<A,B,C>

Type Parameters:
A - the first argument type
B - the second argument type
C - the third argument type
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@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.
Since:
6.0.0
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(A a, B b, C c)
    Performs the operation on the given arguments.
  • Method Details

    • accept

      void accept(A a, B b, C c)
      Performs the operation on the given arguments.