Uses of Interface
de.xima.fc.interfaces.IThrowingFunction
-
Packages that use IThrowingFunction Package Description de.xima.fc.interfaces de.xima.fc.plugin.models.retval.form de.xima.fc.utils Package für Utilsklassen -
-
Uses of IThrowingFunction in de.xima.fc.interfaces
Subinterfaces of IThrowingFunction in de.xima.fc.interfaces Modifier and Type Interface Description interface
IThrowingUnaryOperator<T>
AUnaryOperator
that may throw a checked exception.Methods in de.xima.fc.interfaces that return IThrowingFunction Modifier and Type Method Description static <T,R>
IThrowingFunction<T,R>IThrowingFunction. of(IThrowingFunction<T,R> fn)
Returns the given supplier, for improved variable inference.static <T,R>
IThrowingFunction<T,R>IThrowingFunction. throwingFunction(IThrowingFunction<T,R> fn)
Returns the given function, for improved variable inference.Methods in de.xima.fc.interfaces with parameters of type IThrowingFunction Modifier and Type Method Description static <T,R>
IThrowingFunction<T,R>IThrowingFunction. of(IThrowingFunction<T,R> fn)
Returns the given supplier, for improved variable inference.static <T,R>
IThrowingFunction<T,R>IThrowingFunction. throwingFunction(IThrowingFunction<T,R> fn)
Returns the given function, for improved variable inference. -
Uses of IThrowingFunction in de.xima.fc.plugin.models.retval.form
Methods in de.xima.fc.plugin.models.retval.form with parameters of type IThrowingFunction Modifier and Type Method Description static IPluginFormElementTemplateLoader
DefaultFormElementTemplateLoader. custom(IThrowingFunction<URI,InputStream> persistJsonLoader, IThrowingFunction<URI,InputStream> iconLoader)
Creates a custom loader that uses the given loader functions. -
Uses of IThrowingFunction in de.xima.fc.utils
Methods in de.xima.fc.utils with parameters of type IThrowingFunction Modifier and Type Method Description static <I,O>
Function<I,O>XFunctionalUtils. catchingFunction(IThrowingFunction<I,O> fn)
Wraps a throwing function into a function that catches checked exceptions and rethrows them as runtime exceptions.
-