Interface Function4<D0,D1,D2,D3,R>

Type Parameters:
D0 - the first argument type
D1 - the second argument type
D2 - the third argument type
D3 - the fourth argument type
R - the result type
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 Function4<D0,D1,D2,D3,R>
A function with four arguments.
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(D0 arg0, D1 arg1, D2 arg2, D3 arg3)
    Applies this function to the given arguments.
  • Method Details

    • apply

      R apply(D0 arg0, D1 arg1, D2 arg2, D3 arg3)
      Applies this function to the given arguments.
      Parameters:
      arg0 - the first function argument
      arg1 - the second function argument
      arg2 - the third function argument
      arg3 - the fourth function argument
      Returns:
      the function result