Interface Function8<D0,D1,D2,D3,D4,D5,D6,D7,R>

Type Parameters:
D0 - the first argument type
D1 - the second argument type
D2 - the third argument type
D3 - the fourth argument type
D4 - the fifth argument type
D5 - the sixth argument type
D6 - the seventh argument type
D7 - the eighth 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 Function8<D0,D1,D2,D3,D4,D5,D6,D7,R>
A function with seven arguments.
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(D0 arg0, D1 arg1, D2 arg2, D3 arg3, D4 arg4, D5 arg5, D6 arg6, D7 arg7)
    Applies this function to the given arguments.
  • Method Details

    • apply

      R apply(D0 arg0, D1 arg1, D2 arg2, D3 arg3, D4 arg4, D5 arg5, D6 arg6, D7 arg7)
      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
      arg4 - the fifth function argument
      arg5 - the sixth function argument
      arg6 - the seventh function argument
      arg7 - the eighth function argument
      Returns:
      the function result