- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface
public static interface Try.Transformer<S extends @Nullable Object, T extends @Nullable Object>
A transformer for values of type
S
to type T
.
The Transformer
interface is similar to Function
,
except that a Transformer
may throw an exception.
- Since:
- 1.4
-
Method Summary
-
Method Details
-
apply
-