Uses of Interface
de.xima.fc.interfaces.IThrowingSupplier
-
Packages that use IThrowingSupplier Package Description de.xima.fc.api.rest.impl.common.util de.xima.fc.common.text.shape de.xima.fc.interfaces de.xima.fc.plugin de.xima.fc.utils Package für Utilsklassen -
-
Uses of IThrowingSupplier in de.xima.fc.api.rest.impl.common.util
Methods in de.xima.fc.api.rest.impl.common.util with parameters of type IThrowingSupplier Modifier and Type Method Description static <TEntity extends Serializable>
javax.ws.rs.core.ResponseRestServiceHelper. buildDefaultResourceGetResponse(javax.servlet.http.HttpServletRequest servletRequest, javax.ws.rs.core.Request rsRequest, IThrowingSupplier<TEntity> entitySupplier, BiFunction<TEntity,Locale,IResource> resourceConverter)
-
Uses of IThrowingSupplier in de.xima.fc.common.text.shape
Methods in de.xima.fc.common.text.shape with parameters of type IThrowingSupplier Modifier and Type Method Description FontSpecifier.Builder
FontSpecifier.Builder. data(IThrowingSupplier<InputStream> data)
Sets the input stream of the font data. -
Uses of IThrowingSupplier in de.xima.fc.interfaces
Subinterfaces of IThrowingSupplier in de.xima.fc.interfaces Modifier and Type Interface Description interface
ISerializableThrowingSupplier<T>
ASupplier
that is also serializable and can throw exceptions.Methods in de.xima.fc.interfaces that return IThrowingSupplier Modifier and Type Method Description static <T> IThrowingSupplier<T>
IThrowingSupplier. of(IThrowingSupplier<T> supplier)
Returns the given supplier, for improved variable inference.Methods in de.xima.fc.interfaces with parameters of type IThrowingSupplier Modifier and Type Method Description static <T> IThrowingSupplier<T>
IThrowingSupplier. of(IThrowingSupplier<T> supplier)
Returns the given supplier, for improved variable inference. -
Uses of IThrowingSupplier in de.xima.fc.plugin
Methods in de.xima.fc.plugin with parameters of type IThrowingSupplier Modifier and Type Method Description static Closable<PluginRuntime>
PluginHelper. createTempRuntime(IThrowingSupplier<InputStream> data, String name, String scopeKey, String runtimeKey, boolean instantiate)
Creates a temporary runtime that can be used e.g. -
Uses of IThrowingSupplier in de.xima.fc.utils
Methods in de.xima.fc.utils with parameters of type IThrowingSupplier Modifier and Type Method Description static <O> Supplier<O>
XFunctionalUtils. catchingSupplier(IThrowingSupplier<O> fn)
Wraps a throwing supplier into a supplier that catches checked exceptions and rethrows them as runtime exceptions.
-