Interface ThrowingTriFunction<T,U,S,R,E extends Exception>

Type Parameters:
T - the apply methods first argument type
U - the apply methods second argument type
S - the apply methods third argument type
R - the type of the result of the function
E - the exception 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 ThrowingTriFunction<T,U,S,R,E extends Exception>
This interface is similar to the java.util interface ThrowingBiFunction. Difference is, that it allows to pass to the apply() method one more parameter.
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(T t, U u, S s)
    Applies this function to the given arguments.
  • Method Details

    • apply

      R apply(T t, U u, S s) throws E
      Applies this function to the given arguments.
      Parameters:
      t - the first function argument
      u - the second function argument
      s - the third function argument
      Returns:
      the function result
      Throws:
      E - on error