Class StringValueTransformer<T>
- java.lang.Object
 - 
- org.apache.commons.collections4.functors.StringValueTransformer<T>
 
 
- 
- All Implemented Interfaces:
 java.io.Serializable,Transformer<T,java.lang.String>
public final class StringValueTransformer<T> extends java.lang.Object implements Transformer<T,java.lang.String>, java.io.Serializable
Transformer implementation that returns the result of callingString.valueOfon the input object.- Since:
 - 3.0
 - See Also:
 - Serialized Form
 
 
- 
- 
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static <T> Transformer<T,java.lang.String>stringValueTransformer()Factory returning the singleton instance.java.lang.Stringtransform(T input)Transforms the input to result by callingString.valueOf. 
 - 
 
- 
- 
Method Detail
- 
stringValueTransformer
public static <T> Transformer<T,java.lang.String> stringValueTransformer()
Factory returning the singleton instance.- Type Parameters:
 T- the input type- Returns:
 - the singleton instance
 - Since:
 - 3.1
 
 
- 
transform
public java.lang.String transform(T input)
Transforms the input to result by callingString.valueOf.- Specified by:
 transformin interfaceTransformer<T,java.lang.String>- Parameters:
 input- the input object to transform- Returns:
 - the transformed result
 
 
 - 
 
 -