| Package | Description |
|---|---|
| org.eclipse.collections.impl.block.factory |
This package contains factory implementations for
Function, Predicate, SerializableComparator and Procedure. |
| org.eclipse.collections.impl.block.procedure.checked |
This package contains abstract implementations of
Procedure and Procedure2. |
| Modifier and Type | Method and Description |
|---|---|
static <T> Procedure<T> |
Procedures.throwing(ThrowingProcedure<T> throwingProcedure)
Allows a lambda or anonymous inner class that needs to throw a checked exception to be safely wrapped as a
Procedure that will throw a RuntimeException, wrapping the checked exception that is the cause.
|
static <T> Procedure<T> |
Procedures.throwing(ThrowingProcedure<T> throwingProcedure,
Function2<T,? 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
Procedure that will throw a user specified RuntimeException based on the provided function.
|
| Modifier and Type | Class and Description |
|---|---|
class |
CheckedProcedure<T> |
Copyright © 2004–2022. All rights reserved.