All Methods Static Methods Instance Methods Default Methods
| Modifier and Type |
Method and Description |
default <V> TryHandler<V,R> |
compose(Function1<V,T> before) |
default TryHandler<T,R> |
filter(Matcher1<R> matcher) |
default <V> TryHandler<T,V> |
flatMap(TryHandler<R,V> mapper) |
default <V> TryHandler<T,V> |
flatten() |
static <T> TryHandler<Try<T>,T> |
identity() |
default <V> TryHandler<T,V> |
map(Function1<R,V> mapper) |
static <T,R> TryHandler<T,R> |
of(Function1<T,Try<R>> reference) |
default Function1<T,R> |
orElse(Producer<R> producer) |
default Function1<T,R> |
orElse(R value) |
default TryHandler<T,R> |
recover(Function1<java.lang.Throwable,R> mapper) |
default EitherHandler<T,java.lang.Throwable,R> |
toEither() |
default OptionHandler<T,R> |
toOption() |