Transformer<T,T>
public class CloneTransformer<T> extends java.lang.Object implements Transformer<T,T>
Clone is performed using PrototypeFactory.prototypeFactory(input).create()
.
WARNING: from v4.1 onwards this class will not be serializable anymore in order to prevent potential remote code execution exploits. Please refer to COLLECTIONS-580 for more details.
Modifier and Type | Field | Description |
---|---|---|
static Transformer |
INSTANCE |
Singleton predicate instance
|
Modifier and Type | Method | Description |
---|---|---|
static <T> Transformer<T,T> |
cloneTransformer() |
Factory returning the singleton instance.
|
T |
transform(T input) |
Transforms the input to result by cloning it.
|
public static final Transformer INSTANCE
public static <T> Transformer<T,T> cloneTransformer()
T
- the type of the objects to be clonedCopyright © 2001-2019 - Apache Software Foundation