static <X extends Throwable> ThrowingIntUnaryOperator<X> |
ThrowingIntUnaryOperator.checked(IntUnaryOperator operator) |
Returns a unary operator that applies the operator operator to its input.
|
static <X extends Throwable> ThrowingIntUnaryOperator<X> |
ThrowingIntUnaryOperator.checked(IntUnaryOperator operator,
Class<X> errorType) |
Returns a unary operator that applies the operator operator to its input.
|
static <X extends Throwable> ThrowingIntUnaryOperator<X> |
ThrowingIntUnaryOperator.identity() |
Returns a unary operator that always returns its input argument.
|
static <X extends Throwable> ThrowingIntUnaryOperator<X> |
ThrowingIntUnaryOperator.of(ThrowingIntUnaryOperator<X> operator) |
Factory method for turning ThrowingIntUnaryOperator-shaped lambdas into ThrowingIntUnaryOperators.
|
default <E extends Throwable> ThrowingIntUnaryOperator<E> |
ThrowingIntUnaryOperator.onErrorApplyChecked(ThrowingIntUnaryOperator<? extends E> fallback) |
Returns a unary operator that applies this operator to its input.
|
default <E extends Throwable> ThrowingIntUnaryOperator<E> |
ThrowingIntUnaryOperator.onErrorGetChecked(ThrowingIntSupplier<? extends E> fallback) |
Returns a unary operator that applies this operator to its input.
|
default <E extends Throwable> ThrowingIntUnaryOperator<E> |
ThrowingIntUnaryOperator.onErrorHandleChecked(ThrowingToIntFunction<? super X,? extends E> errorHandler) |
Returns a unary operator that applies this operator to its input.
|
default <E extends Throwable> ThrowingIntUnaryOperator<E> |
ThrowingIntUnaryOperator.onErrorThrowAsChecked(Function<? super X,? extends E> errorMapper) |
Returns a unary operator that applies this operator to its input.
|