static <R,X extends Throwable> ThrowingIntFunction<R,X> |
ThrowingIntFunction.checked(IntFunction<? extends R> function) |
Returns a function that applies the function function to its input.
|
static <R,X extends Throwable> ThrowingIntFunction<R,X> |
ThrowingIntFunction.checked(IntFunction<? extends R> function,
Class<X> errorType) |
Returns a function that applies the function function to its input.
|
static <R,X extends Throwable> ThrowingIntFunction<R,X> |
ThrowingIntFunction.of(ThrowingIntFunction<R,X> function) |
Factory method for turning ThrowingIntFunction-shaped lambdas into ThrowingIntFunctions.
|
default <E extends Throwable> ThrowingIntFunction<R,E> |
ThrowingIntFunction.onErrorApplyChecked(ThrowingIntFunction<? extends R,? extends E> fallback) |
Returns a function that applies this function to its input.
|
default <E extends Throwable> ThrowingIntFunction<R,E> |
ThrowingIntFunction.onErrorGetChecked(ThrowingSupplier<? extends R,? extends E> fallback) |
Returns a function that applies this function to its input.
|
default <E extends Throwable> ThrowingIntFunction<R,E> |
ThrowingIntFunction.onErrorHandleChecked(ThrowingFunction<? super X,? extends R,? extends E> errorHandler) |
Returns a function that applies this function to its input.
|
default <E extends Throwable> ThrowingIntFunction<R,E> |
ThrowingIntFunction.onErrorThrowAsChecked(Function<? super X,? extends E> errorMapper) |
Returns a function that applies this function to its input.
|