Uses of Interface
org.eclipse.collections.impl.block.function.checked.ThrowingFunction
-
Packages that use ThrowingFunction Package Description org.eclipse.collections.impl.block.factory This package contains factory implementations forFunction
,Predicate
,SerializableComparator
andProcedure
.org.eclipse.collections.impl.block.function.checked -
-
Uses of ThrowingFunction in org.eclipse.collections.impl.block.factory
Classes in org.eclipse.collections.impl.block.factory that implement ThrowingFunction Modifier and Type Class Description private static class
Functions.ClassForNameFunction
private static class
Functions.ThrowingFunctionAdapter<T,V>
Fields in org.eclipse.collections.impl.block.factory declared as ThrowingFunction Modifier and Type Field Description private ThrowingFunction<T,V>
Functions.ThrowingFunctionAdapter. throwingFunction
Methods in org.eclipse.collections.impl.block.factory with parameters of type ThrowingFunction Modifier and Type Method Description static <T,V>
Function<T,V>Functions. throwing(ThrowingFunction<T,V> throwingFunction)
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,V>
Function<T,V>Functions. throwing(ThrowingFunction<T,V> throwingFunction, Function2<T,? super java.lang.Throwable,? extends java.lang.RuntimeException> rethrow)
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 user specified RuntimeException based on the provided function.Constructors in org.eclipse.collections.impl.block.factory with parameters of type ThrowingFunction Constructor Description ThrowingFunctionAdapter(ThrowingFunction<T,V> throwingFunction)
-
Uses of ThrowingFunction in org.eclipse.collections.impl.block.function.checked
Classes in org.eclipse.collections.impl.block.function.checked that implement ThrowingFunction Modifier and Type Class Description class
CheckedFunction<T,V>
-