Uses of Interface
com.taco.text.IObjectToStringConverter

Packages that use IObjectToStringConverter
com.taco.text Provides converters to and from text, and other text processing and formatting capabilities. 
 

Uses of IObjectToStringConverter in com.taco.text
 

Classes in com.taco.text that implement IObjectToStringConverter
 class AbstractObjectToStringConverter
          An abstract implementation of IStringToObjectConverter that also implements IObjectMapper by calling the toString() method.
 class ClassToStringConverter
          An implementation of IObjectToStringConverter that returns the class name of the object to be converted.
 class CollectionToStringConverter
          A converter from collections to strings that uses StringListUtilities.createCollectionString() to do the conversion.
 class DefaultObjectToStringConverter
          A class that implements IObjectToStringConverter just by calling the toString() method of the object to convert.
 class IntArrayToStringConverter
          A converter from int arrays to comma-separated strings.
 class PatternToStringConverter
          An implemenation of IObjectToStringConverter the converts a Pattern into a string which is the double quote-escaped version of its regex string.