Interface Try.Transformer<S extends @Nullable Object, T extends @Nullable Object>

Enclosing class:
Try<V extends @Nullable Object>
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

    Modifier and Type
    Method
    Description
    apply(S value)
    Apply this transformer to the supplied value.
  • Method Details

    • apply

      T apply(S value) throws Exception
      Apply this transformer to the supplied value.
      Throws:
      Exception - if the transformation fails