| Modifier and Type | Method and Description |
|---|---|
abstract <U> Try<U> |
Try.flatMap(ThrowingFunction<? super T,? extends Try<U>,? extends Exception> mapper)
Deprecated.
Applies a function on two values.
|
<U> Try<U> |
Success.flatMap(ThrowingFunction<? super T,? extends Try<U>,? extends Exception> mapper)
Deprecated.
|
<U> Try<U> |
Failure.flatMap(ThrowingFunction<? super T,? extends Try<U>,? extends Exception> mapper)
Deprecated.
|
abstract <U> Try<U> |
Try.map(ThrowingFunction<? super T,? extends U,? extends Exception> mapper)
Deprecated.
Applies a function on a value of type Success.
|
<U> Try<U> |
Success.map(ThrowingFunction<? super T,? extends U,? extends Exception> mapper)
Deprecated.
|
<U> Try<U> |
Failure.map(ThrowingFunction<? super T,? extends U,? extends Exception> mapper)
Deprecated.
|
static <U,V> Try<U> |
Try.of(ThrowingFunction<V,? extends U,? extends Exception> func,
V v)
Deprecated.
Starting point to the Try structure.
|
Copyright © 2014–2017. All rights reserved.