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

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

    • accept

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