Uses of Interface
org.eclipse.collections.impl.block.function.checked.ThrowingFunction0
Packages that use ThrowingFunction0
Package
Description
This package contains factory implementations for
Function, Predicate, SerializableComparator and Procedure.-
Uses of ThrowingFunction0 in org.eclipse.collections.impl.block.factory
Methods in org.eclipse.collections.impl.block.factory with parameters of type ThrowingFunction0Modifier and TypeMethodDescriptionstatic <T> Function0<T>Functions0.throwing(ThrowingFunction0<T> throwingFunction0) Allows a lambda or anonymous inner class that needs to throw a checked exception to be safely wrapped as a Function that will throw a RuntimeException, wrapping the checked exception that is the cause.static <T> Function0<T>Functions0.throwing(ThrowingFunction0<T> throwingFunction0, Function<? super Throwable, ? extends RuntimeException> rethrow) Allows a lambda or anonymous inner class that needs to throw a checked exception to be safely wrapped as a Function0 that will throw a user specified RuntimeException based on the provided function. -
Uses of ThrowingFunction0 in org.eclipse.collections.impl.block.function.checked
Classes in org.eclipse.collections.impl.block.function.checked that implement ThrowingFunction0