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

util.DateTimeFormatter Maven / Gradle / Ivy

There is a newer version: 2.0.21
Show newest version
package util;

import org.joda.time.format.DateTimeFormatterBuilder;

public class DateTimeFormatter {
    public static org.joda.time.format.DateTimeFormatter format() {
        return new DateTimeFormatterBuilder()
                .appendYear(4, 4)
                .appendMonthOfYear(2)
                .appendDayOfMonth(2)
                .toFormatter();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy