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

Type Parameters:
T - the type parameter
U - the type parameter
V - the type parameter
W - the type parameter
R - the type 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 QuadFunction<T,U,V,W,R>
Represents a function that accepts four arguments and produces a result. This is the four-arity specialization of Function.
  • Method Summary

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

    • apply

      R apply(T t, U u, V v, W w)
      Applies this function to the given arguments.
      Parameters:
      t - the first function argument
      u - the second function argument
      v - the third function argument
      w - the w
      Returns:
      the function result