Module org.joda.convert

Joda-Convert provides a small set of classes to aid conversion between Objects and Strings.

The StringConvert class is the main entry point.

 // conversion to String
 String str = StringConvert.INSTANCE.convertToString(foo);
 
 // conversion from String
 Foo bar = StringConvert.INSTANCE.convertFromString(Foo.class, str);