Interface CheckedBiFunction<T,U,R,E extends Exception>

Type Parameters:
T -
U -
R -
E -
All Superinterfaces:
BiFunction<T,U,R>
All Known Subinterfaces:
CheckedBinaryOperator<T,E>, CheckedBiPredicate<T,U,E>, CheckedEolBiConsumer<T,U>, CheckedEolBiFunction<T,U,R>, CheckedEolBinaryOperator<T>, CheckedEolBiPredicate<T,U>
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 CheckedBiFunction<T,U,R,E extends Exception> extends BiFunction<T,U,R>
Since:
1.6
Author:
Sina Madani
  • Method Summary

    Modifier and Type
    Method
    Description
    default R
    apply(T t, U u)
     
    applyThrows(T t, U u)
     

    Methods inherited from interface java.util.function.BiFunction

    andThen
  • Method Details