Uses of Interface
org.apache.commons.lang3.function.FailableSupplier
Packages that use FailableSupplier
Package
Description
Provides functional interfaces to complement those in
java.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 with parameters of type FailableSupplierModifier and TypeMethodDescriptionstatic <T> Supplier<T>
Failable.asSupplier
(FailableSupplier<T, ?> supplier) Converts the givenFailableSupplier
into a standardSupplier
.static <T,
E extends Throwable>
TFailable.get
(FailableSupplier<T, E> supplier) Invokes a supplier, and returns the result.