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