Interface ThrowingSupplier<T>

  • All Superinterfaces:
    java.util.function.Supplier<T>

    public interface ThrowingSupplier<T>
    extends java.util.function.Supplier<T>
    Created by julien on 9/1/16.
    • Method Detail

      • get

        default T get()
        Specified by:
        get in interface java.util.function.Supplier<T>
      • andThen

        default <R> ThrowingSupplier<R> andThen​(java.util.function.Function<? super T,​? extends R> after)