public interface Fragile<T,E extends java.lang.Throwable>
Single but it may throw an Exception during retrieval of the value.
It's primary use case is to allow deferring checked Exceptions if they can't be thrown right away. A common example is Iterating elements, Iterator.next() doesn't allow checked Exceptions to be thrown. In this case a Fragile can be returned to defer any exception to evaluation time.
| Modifier and Type | Method and Description |
|---|---|
T |
value() |