Package org.icij.datashare.function
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 Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default <R> ThrowingSupplier<R>andThen(java.util.function.Function<? super T,? extends R> after)default <R> ThrowingSupplier<R>andThen(ThrowingFunction<? super T,? extends R> after)default Tget()TgetThrows()
-
-
-
Method Detail
-
andThen
default <R> ThrowingSupplier<R> andThen(ThrowingFunction<? super T,? extends R> after)
-
andThen
default <R> ThrowingSupplier<R> andThen(java.util.function.Function<? super T,? extends R> after)
-
-