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