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