net.guerlab.commons.time.formater.IsoDate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of guerlab-commons Show documentation
Show all versions of guerlab-commons Show documentation
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 IsoDate implements FormatSupplier {
public static final IsoDate INSTANCE = new IsoDate();
@Override
public DateTimeFormatter get() {
return DateTimeFormatter.ISO_DATE;
}
}