Interface CheckedTriFunction<T,T2,T3,R>

Type Parameters:
T - type 1
T2 - type 2
T3 - type 3
R - result type

public interface CheckedTriFunction<T,T2,T3,R>
CheckedTriFunction is a checked variant of TriFunction
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(T t, T2 t2, T3 t3)
    Applies the parameters to the function implemented or throws an exception
  • Method Details

    • apply

      R apply(T t, T2 t2, T3 t3) throws Exception
      Applies the parameters to the function implemented or throws an exception
      Parameters:
      t - parameter 1
      t2 - parameter 2
      t3 - parameter 3
      Returns:
      the result in normal circumstance
      Throws:
      Exception - is otherwise thrown