Interface CheckedBiFunction<T,​U,​R,​E extends java.lang.Exception>

  • Type Parameters:
    T -
    U -
    R -
    E -
    All Superinterfaces:
    java.util.function.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 java.lang.Exception>
    extends java.util.function.BiFunction<T,​U,​R>
    Since:
    1.6
    Author:
    Sina Madani
    • Method Detail

      • apply

        default R apply​(T t,
                        U u)
        Specified by:
        apply in interface java.util.function.BiFunction<T,​U,​R>
      • applyThrows

        R applyThrows​(T t,
                      U u)
               throws E extends java.lang.Exception
        Throws:
        E extends java.lang.Exception