Uses of Interface
com.identityworksllc.iiq.common.Functions.SupplierWithError
- 
Packages that use Functions.SupplierWithError Package Description com.identityworksllc.iiq.common Utilities, interfaces, and standalone tools for IIQ development - 
- 
Uses of Functions.SupplierWithError in com.identityworksllc.iiq.common
Methods in com.identityworksllc.iiq.common that return Functions.SupplierWithError Modifier and Type Method Description static Functions.SupplierWithError<Boolean>Functions. sb(bsh.This bsh, String methodName, Object... params)Supplies a value by invoking the given Beanshell method with the given parameters.Methods in com.identityworksllc.iiq.common with parameters of type Functions.SupplierWithError Modifier and Type Method Description static <A> Maybe<A>Maybe. of(Class<A> aClass, Functions.SupplierWithError<A> supplier)Returns a Maybe that is either a value or an error, depending on the outcome of the supplier in question.static <T> voidUtilities. withIterator(Functions.SupplierWithError<Iterator<T>> iteratorSupplier, Functions.ConsumerWithError<Iterator<T>> iteratorConsumer)Safely handles the given iterator by passing it to the Consumer and, regardless of outcome, by flushing it when the Consumer returns. 
 -