static <X extends Throwable> ThrowingDoubleBinaryOperator<X> |
ThrowingDoubleBinaryOperator.checked(DoubleBinaryOperator operator) |
Returns a binary operator that applies the operator operator to its input.
|
static <X extends Throwable> ThrowingDoubleBinaryOperator<X> |
ThrowingDoubleBinaryOperator.checked(DoubleBinaryOperator operator,
Class<X> errorType) |
Returns a binary operator that applies the operator operator to its input.
|
static <X extends Throwable> ThrowingDoubleBinaryOperator<X> |
ThrowingDoubleBinaryOperator.of(ThrowingDoubleBinaryOperator<X> operator) |
Factory method for turning ThrowingBinaryDoubleOperator-shaped lambdas into ThrowingBinaryDoubleOpreators.
|
default <E extends Throwable> ThrowingDoubleBinaryOperator<E> |
ThrowingDoubleBinaryOperator.onErrorApplyChecked(ThrowingDoubleBinaryOperator<? extends E> fallback) |
Returns a binary operator that applies this operator to its input.
|
default <E extends Throwable> ThrowingDoubleBinaryOperator<E> |
ThrowingDoubleBinaryOperator.onErrorGetChecked(ThrowingDoubleSupplier<? extends E> fallback) |
Returns a binary operator that applies this operator to its input.
|
default <E extends Throwable> ThrowingDoubleBinaryOperator<E> |
ThrowingDoubleBinaryOperator.onErrorHandleChecked(ThrowingToDoubleFunction<? super X,? extends E> errorHandler) |
Returns a binary operator that applies this operator to its input.
|
default <E extends Throwable> ThrowingDoubleBinaryOperator<E> |
ThrowingDoubleBinaryOperator.onErrorThrowAsChecked(Function<? super X,? extends E> errorMapper) |
Returns a binary operator that applies this operator to its input.
|