com.github.mygreen.supercsv.builder.time.ZonedDateTimeProcessorBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of super-csv-annotation Show documentation
Show all versions of super-csv-annotation Show documentation
CSVのJavaライブラリであるSuperCSVに、アノテーション機能を追加したライブラリです。
package com.github.mygreen.supercsv.builder.time;
import java.time.ZonedDateTime;
/**
* {@link ZonedDateTime}のビルダクラス
*
* @version 2.0
* @since 1.2
* @author T.TSUCHIE
*
*/
public class ZonedDateTimeProcessorBuilder extends AbstractTemporalProcessorBuilder {
/**
* {@literal uuuu-MM-dd HH:mm:ssxxx'['VV']'}を返す。
*/
@Override
protected String getDefaultPattern() {
return "uuuu-MM-dd HH:mm:ssxxx'['VV']'";
}
}