Interface QuadFunction<T,U,V,W,R>

Type Parameters:
T - The first input parameter
U - The second input parameter
V - The third input parameter
W - The fourth input parameter
R - The return value of this function
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 QuadFunction<T,U,V,W,R>
A function which takes four parameters of different types as its input, then returns a single value whose type is not necessarily related to its input parameters.
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(T t, U u, V v, W w)
    Applies this function to the provided parameters.
  • Method Details

    • apply

      R apply(T t, U u, V v, W w)
      Applies this function to the provided parameters.
      Parameters:
      t - The first parameter of this function
      u - The second parameter of this function
      v - The third parameter of this function
      w - The fourth parameter of this function
      Returns:
      The return value of this function