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

net.guerlab.commons.time.formater.IsoDateTime Maven / Gradle / Ivy

Go to download

net.guerlab.commons is a suite of core and expanded libraries that include utility classes and much much more.

The newest version!
package net.guerlab.commons.time.formater;

import net.guerlab.commons.time.FormatSupplier;

import java.time.format.DateTimeFormatter;

/**
 * iso日期时间格式
 *
 * @author guer
 */
public class IsoDateTime implements FormatSupplier {

    @Override
    public DateTimeFormatter get() {
        return DateTimeFormatter.ISO_DATE_TIME;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy