default <T> Lang.Result<T> |
ImplementationLoader.anyInstanceOf(Class<T> type) |
Load the instance of the given type.
|
static <T> Lang.Result<T> |
Lang.Result.empty() |
|
static <T,E extends RuntimeException> Lang.Result<T> |
Lang.Result.failure(E cause) |
|
static <T> Lang.Result<T> |
Lang.first(Iterable<T> data) |
|
static <T> Lang.Result<T> |
Lang.first(Iterable<T> data,
Function<T,Boolean> matcher) |
|
<T> Lang.Result<T> |
ImplementationLoader.instanceOf(Class<T> type) |
Load the instance of the given type.
|
<T> Lang.Result<T> |
ImplementationLoader.SPIImplementationLoader.instanceOf(Class<T> interfaceType) |
|
<R> Lang.Result<R> |
Lang.Result.map(Function<T,R> mapper) |
|
static <T> Lang.Result<T> |
Lang.Result.of(T value) |
|