Interface Try.Transformer<S,​T>

  • Enclosing class:
    Try<V>
    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,​T>
    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.

    • Method Detail

      • apply

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