R - the result type@FunctionalInterface public interface SupplierWithException<R>
| Modifier and Type | Method and Description |
|---|---|
static <R> Supplier<R> |
asSupplier(SupplierWithException<R> unchecked) |
static <R> Supplier<R> |
asSupplierOrElse(SupplierWithException<R> unchecked,
R orElse) |
static <R> Supplier<R> |
asSupplierOrElseGet(SupplierWithException<R> unchecked,
Supplier<? extends R> orElseGet) |
R |
get() |
default Supplier<R> |
orElse(R orElse) |
default Supplier<R> |
orElseGet(Supplier<? extends R> orElseGet) |
default Supplier<R> |
orElseThrow() |
static <R> Supplier<R> asSupplier(SupplierWithException<R> unchecked)
static <R> Supplier<R> asSupplierOrElse(SupplierWithException<R> unchecked, R orElse)
static <R> Supplier<R> asSupplierOrElseGet(SupplierWithException<R> unchecked, Supplier<? extends R> orElseGet)
Copyright © 2021. All rights reserved.