Class ExceptionTransformer<I,O>
- java.lang.Object
-
- org.apache.commons.collections4.functors.ExceptionTransformer<I,O>
-
- All Implemented Interfaces:
java.io.Serializable
,Transformer<I,O>
public final class ExceptionTransformer<I,O> extends java.lang.Object implements Transformer<I,O>, java.io.Serializable
Transformer implementation that always throws an exception.- Since:
- 3.0
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static Transformer
INSTANCE
Singleton predicate instance
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static <I,O>
Transformer<I,O>exceptionTransformer()
Factory returning the singleton instance.O
transform(I input)
Transforms the input to result by cloning it.
-
-
-
Field Detail
-
INSTANCE
public static final Transformer INSTANCE
Singleton predicate instance
-
-
Method Detail
-
exceptionTransformer
public static <I,O> Transformer<I,O> exceptionTransformer()
Factory returning the singleton instance.- Type Parameters:
I
- the input typeO
- the output type- Returns:
- the singleton instance
- Since:
- 3.1
-
transform
public O transform(I input)
Transforms the input to result by cloning it.- Specified by:
transform
in interfaceTransformer<I,O>
- Parameters:
input
- the input object to transform- Returns:
- never
- Throws:
FunctorException
- always
-
-