Interface ThrowableTriFunction<T,​U,​V,​R>

Type Parameters:
T - input parameter type T
U - input parameter type U
V - input parameter type V
R - output return 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 ThrowableTriFunction<T,​U,​V,​R>
Throwable TriFunction
Since:
1.0.0
Author:
PARK Yong Seo
See Also:
Function
  • Method Summary

    Modifier and Type Method Description
    R apply​(T t, U u, V v)  
  • Method Details

    • apply

      R apply​(T t, U u, V v) throws java.lang.Exception
      Parameters:
      t - input parameter type T
      u - input parameter type U
      v - input parameter type V
      Returns:
      output return
      Throws:
      java.lang.Exception
      See Also:
      Function