Uses of Interface
org.apache.commons.lang3.function.FailableSupplier
-
Packages that use FailableSupplier Package Description org.apache.commons.lang3.function Provides functional interfaces to complement those injava.lang.function
and utilities for working with Java 8 lambdas. -
-
Uses of FailableSupplier in org.apache.commons.lang3.function
Methods in org.apache.commons.lang3.function that return FailableSupplier Modifier and Type Method Description static <R> FailableSupplier<R,java.lang.Throwable>
MethodInvokers. asFailableSupplier(java.lang.reflect.Method method)
Produces aFailableSupplier
for a given a supplier Method.Methods in org.apache.commons.lang3.function with parameters of type FailableSupplier Modifier and Type Method Description static <T> java.util.function.Supplier<T>
Failable. asSupplier(FailableSupplier<T,?> supplier)
Converts the givenFailableSupplier
into a standardSupplier
.static <T,E extends java.lang.Throwable>
TFailable. get(FailableSupplier<T,E> supplier)
Invokes a supplier, and returns the result.
-