static <T,X extends Throwable> ThrowingSupplier<T,X> |
ThrowingSupplier.of(ThrowingSupplier<T,X> supplier) |
Factory method for turning ThrowingSupplier-shaped lambdas into ThrowingSuppliers.
|
default <E extends Throwable> ThrowingBiFunction<T,U,R,E> |
ThrowingBiFunction.onErrorGetChecked(ThrowingSupplier<? extends R,? extends E> fallback) |
Returns a function that applies this function to its input.
|
default <E extends Throwable> ThrowingBinaryOperator<T,E> |
ThrowingBinaryOperator.onErrorGetChecked(ThrowingSupplier<? extends T,? extends E> fallback) |
|
default <E extends Throwable> ThrowingDoubleFunction<R,E> |
ThrowingDoubleFunction.onErrorGetChecked(ThrowingSupplier<? extends R,? extends E> fallback) |
Returns a function that applies this function to its input.
|
default <E extends Throwable> ThrowingFunction<T,R,E> |
ThrowingFunction.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.onErrorGetChecked(ThrowingSupplier<? extends R,? extends E> fallback) |
Returns a function that applies this function to its input.
|
default <E extends Throwable> ThrowingLongFunction<R,E> |
ThrowingLongFunction.onErrorGetChecked(ThrowingSupplier<? extends R,? extends E> fallback) |
Returns a function that applies this function to its input.
|
default <E extends Throwable> ThrowingSupplier<T,E> |
ThrowingSupplier.onErrorGetChecked(ThrowingSupplier<? extends T,? extends E> fallback) |
Returns a supplier that calls this supplier.
|
default <E extends Throwable> ThrowingUnaryOperator<T,E> |
ThrowingUnaryOperator.onErrorGetChecked(ThrowingSupplier<? extends T,? extends E> fallback) |
|
static <T> Supplier<T> |
ThrowingSupplier.unchecked(ThrowingSupplier<? extends T,?> supplier) |
Returns a supplier that calls the supplier supplier.
|