Interface TConsumer3<X>

Type Parameters:
X - the type of all arguments
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 TConsumer3<X>
A three-argument consumer in which all arguments are of the same type. Unlike most other functional interfaces, TConsumer3 is expected to operate via side-effects.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(X x1, X x2, X x3)
     
  • Method Details

    • accept

      void accept(X x1, X x2, X x3)