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

com.liberologico.cloudesire.common.SimpleDateFormatFactory Maven / Gradle / Ivy

There is a newer version: 3.9.0
Show newest version
package com.liberologico.cloudesire.common;

import java.text.SimpleDateFormat;

public class SimpleDateFormatFactory
{
    public static SimpleDateFormat dateFormat()
    {
        return new SimpleDateFormat( DateFormats.DATE_PATTERN );
    }

    public static SimpleDateFormat dateTimeFormat()
    {
        return new SimpleDateFormat( DateFormats.DATE_TIME_PATTERN );
    }

    public static SimpleDateFormat iso8601Format()
    {
        return new SimpleDateFormat( DateFormats.ISO8601_PATTERN );
    }

    public static SimpleDateFormat sqlFormat()
    {
        return new SimpleDateFormat( DateFormats.SQL_PATTERN );
    }

    private SimpleDateFormatFactory()
    {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy