| java.lang.Object org.apache.commons.collections.functors.StringValueTransformer
StringValueTransformer | final public class StringValueTransformer implements Transformer,Serializable(Code) | | Transformer implementation that returns the result of calling
String.valueOf on the input object.
since: Commons Collections 3.0 version: $Revision: 405927 $ $Date: 2006-05-12 23:57:03 +0100 (Fri, 12 May 2006) $ author: Stephen Colebourne |
getInstance | public static Transformer getInstance()(Code) | | Factory returning the singleton instance.
the singleton instance since: Commons Collections 3.1 |
transform | public Object transform(Object input)(Code) | | Transforms the input to result by calling String.valueOf .
Parameters: input - the input object to transform the transformed result |
|
|