Uses of Interface
com.dudko.tools.safejavastreams.function.ThrowingSupplier
Packages that use ThrowingSupplier
Package
Description
-
Uses of ThrowingSupplier in com.dudko.tools.safejavastreams.adapter
Methods in com.dudko.tools.safejavastreams.adapter with parameters of type ThrowingSupplierModifier and TypeMethodDescriptionstatic <T> Supplier<T>
CheckedAdapters.wrapSupplier
(ThrowingSupplier<T> supplier) Wraps a ThrowingSupplier into a regular Supplier. -
Uses of ThrowingSupplier in com.dudko.tools.safejavastreams.core
Methods in com.dudko.tools.safejavastreams.core with parameters of type ThrowingSupplierModifier and TypeMethodDescriptionstatic <T> Try<T>
Try.of
(ThrowingSupplier<T> supplier) Executes given code block and wraps result in Try. -
Uses of ThrowingSupplier in com.dudko.tools.safejavastreams.extensions
Methods in com.dudko.tools.safejavastreams.extensions with parameters of type ThrowingSupplierModifier and TypeMethodDescriptionstatic <T> Try<T>
TryExtensions.from
(ThrowingSupplier<T> supplier) Wraps a ThrowingSupplier into Try.