public abstract class StringConverter<T>
extends java.lang.Object
Converter defines conversion behavior between strings and objects.
The type of objects and formats of strings are defined by the subclasses
of Converter.
public abstract java.lang.String toString(T object)
Converts the object provided into its string form.
Format of the returned string is defined by the specific converter.
Returns:
a string representation of the object passed in.
fromString
public abstract T fromString(java.lang.String string)
Converts the string provided into an object defined by the specific converter.
Format of the string and type of the resulting object is defined by the specific converter.