Interface ThrowingFunction<T,​R,​E extends java.lang.Exception>

  • All Superinterfaces:
    java.util.function.Function<T,​R>
    All Known Implementing Classes:
    SynchronousTransfer, Transfer

    public interface ThrowingFunction<T,​R,​E extends java.lang.Exception>
    extends java.util.function.Function<T,​R>
    • Method Summary

      Modifier and Type Method Description
      default R apply​(T t)  
      R applyChecked​(T t)  
      • Methods inherited from interface java.util.function.Function

        andThen, compose
    • Method Detail

      • applyChecked

        R applyChecked​(T t)
                throws E extends java.lang.Exception
        Throws:
        E extends java.lang.Exception
      • apply

        default R apply​(T t)
        Specified by:
        apply in interface java.util.function.Function<T,​R>