About

Joda-Convert tackles the problem of round-trip Object to String conversion.

A common problem in serialization, particularly when working with textual formats like JSON, is that of converting simple objects to and from strings. Joda-Convert addresses this without getting caught up in the wider problem of Object to Object transformation.

Joda-Convert is licensed under the business-friendly Apache 2.0 licence.

Features

A selection of key features:

  • Round-trip Object to String
  • Conversions defined by annotations or by implementing a simple interface
  • Very simple to use
  • No dependencies

Documentation

Various documentation is available:

Why Joda Convert?

Joda-Convert is a small, highly-focussed library, tackling a problem that the JDK should solve - providing round-trip conversion between Objects and Strings.

  // conversion to String
  String str = StringConvert.INSTANCE.convertToString(foo);

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

Joda-Convert supports two mechanisms of extending the list of supported conversions. The first is to write your own converter implementing an interface. The second is to use annotations.

The ability of Joda-Convert to use annotations to define the conversion methods is a key difference from other projects. For example, most value classes, like Currency or TimeZone, already have methods to convert to and from a standard format String. Consider a Distance class:

  public class Distance {
    @FromString
    public static Distance parse(String str) { ... }

    @ToString
    public String getStandardOutput() { ... }
  }

As shown, the two methods may have any name. They must simply fulfil the required method signatures for conversion. The FromString annotation may also be applied to a constructor.

When Joda-Convert is asked to convert between an object and a String, if there is no registered converter then the annotations are checked. If they are found, then the methods are called by reflection.

Releases

Release 2.2.3 is the current latest release. This release is considered stable and worthy of the 2.x tag. The v2.x releases are compatible with v1.x releases, with the exception that the direct Guava dependency is removed.

Joda-Convert requires Java SE 6 or later and has no dependencies.

Available in Maven Central.

<dependency>
  <groupId>org.joda</groupId>
  <artifactId>joda-convert</artifactId>
  <version>2.2.3</version>
</dependency>

The main jar file is based on Java 6 but contains a module-info.class file for Java 9 and later. If you have problems with this, there is a “classic” variant you can use instead:

<dependency>
  <groupId>org.joda</groupId>
  <artifactId>joda-convert</artifactId>
  <version>2.2.3</version>
  <classifier>classic</classifier>
</dependency>

Java module name: org.joda.convert.

Back to top

Version: 2.2.3. Last Published: 2023-01-15.

Reflow Maven skin.