org.apache.commons.collections.functors
public class InstantiateTransformer extends Object implements Transformer, Serializable
Since: Commons Collections 3.0
Version: $Revision: 646777 $ $Date: 2008-04-10 13:33:15 +0100 (Thu, 10 Apr 2008) $
| Field Summary | |
|---|---|
| static Transformer | NO_ARG_INSTANCE Singleton instance that uses the no arg constructor |
| Constructor Summary | |
|---|---|
| InstantiateTransformer(Class[] paramTypes, Object[] args)
Constructor that performs no validation.
| |
| Method Summary | |
|---|---|
| static Transformer | getInstance(Class[] paramTypes, Object[] args)
Transformer method that performs validation.
|
| Object | transform(Object input)
Transforms the input Class object to a result by instantiation.
|
getInstance if you want that.
Parameters: paramTypes the constructor parameter types, not cloned args the constructor arguments, not cloned
Parameters: paramTypes the constructor parameter types args the constructor arguments
Returns: an instantiate transformer
Parameters: input the input object to transform
Returns: the transformed result