All Downloads are FREE. Search and download functionalities are using the official Maven repository.

adapters.DateTimeAdapter Maven / Gradle / Ivy

There is a newer version: 1.2019.09.25-00.21-49b69f0625e0
Show newest version
package adapters;

import org.joda.time.DateTime;


public class DateTimeAdapter {
    public static DateTime unmarshal(String v) {
        return new DateTime(v);
    }

    public static String marshal(DateTime v) {
        return v.toString();
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy