Interface CheckedBinaryOperator<T,​E extends java.lang.Exception>

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

      • apply

        default T apply​(T t,
                        T u)
        Specified by:
        apply in interface java.util.function.BiFunction<T,​T,​T>
        Specified by:
        apply in interface CheckedBiFunction<T,​T,​T,​E extends java.lang.Exception>