Class ExceptionTransformer<I,O>
java.lang.Object
org.apache.commons.collections4.functors.ExceptionTransformer<I,O>
- All Implemented Interfaces:
Serializable,Transformer<I,O>
public final class ExceptionTransformer<I,O>
extends Object
implements Transformer<I,O>, Serializable
Transformer implementation that always throws an exception.
- Since:
- 3.0
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final TransformerSingleton predicate instanceprivate static final longSerial version UID -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic <I,O> Transformer <I, O> Factory returning the singleton instance.private ObjectTransforms the input to result by cloning it.
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDSerial version UID- See Also:
-
INSTANCE
Singleton predicate instance
-
-
Constructor Details
-
ExceptionTransformer
private ExceptionTransformer()Restricted constructor.
-
-
Method Details
-
exceptionTransformer
Factory returning the singleton instance.- Type Parameters:
I- the input typeO- the output type- Returns:
- the singleton instance
- Since:
- 3.1
-
transform
Transforms the input to result by cloning it.- Specified by:
transformin interfaceTransformer<I,O> - Parameters:
input- the input object to transform- Returns:
- never
- Throws:
FunctorException- always
-
readResolve
-