Interface UFunErr.UFunErr5<R,T1,T2,T3,T4,T5,E extends Throwable>

Type Parameters:
R - Value returned by the function
T1 - first function argument
T2 - second function argument
T3 - third function argument
T4 - fourth function argument
T5 - fifth function argument
E - execution error
All Known Subinterfaces:
UFunErrSafe.UFunErrSafe5<R,T1,T2,T3,T4,T5,E>
Enclosing interface:
UFunErr<R,E extends Throwable>
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 static interface UFunErr.UFunErr5<R,T1,T2,T3,T4,T5,E extends Throwable>
Representation of a method in Java. Although called a function, it works very similar to a method, and it is possible to reference one via referencing or lambda expressions.
  • Method Summary

    Modifier and Type
    Method
    Description
    invoke(T1 a1, T2 a2, T3 a3, T4 a4, T5 a5)
    Method that invokes the behavior of the function.
  • Method Details

    • invoke

      R invoke(T1 a1, T2 a2, T3 a3, T4 a4, T5 a5) throws E
      Method that invokes the behavior of the function. This method takes the necessary parameters and returns the defined result.
      Parameters:
      a1 - first function argument
      a2 - second function argument
      a3 - third function argument
      a4 - fourth function argument
      a5 - fifth function argument
      Returns:
      function call result
      Throws:
      E - error if something goes wrong