Interface QuadConsumer<T,U,V,W>

Type Parameters:
T - The first input parameter
U - The second input parameter
V - The third input parameter
W - The fourth input parameter
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 QuadConsumer<T,U,V,W>
A function which takes four parameters of different types, and returns no value.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(T t, U u, V v, W w)
    Accepts this function, executing its contents.
  • Method Details

    • accept

      void accept(T t, U u, V v, W w)
      Accepts this function, executing its contents.
      Parameters:
      t - The first input parameter
      u - The second input parameter
      v - The third input parameter
      w - The fourth input parameter