net.guerlab.commons.time.formater.IsoDateTime 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 IsoDateTime implements FormatSupplier {
@Override
public DateTimeFormatter get() {
return DateTimeFormatter.ISO_DATE_TIME;
}
}