com.github.mygreen.supercsv.builder.standard.TimestampProcessorBuilder 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.standard;
import java.sql.Timestamp;
/**
*
* @version 2.0
* @author T.TSUCHIE
*
*/
public class TimestampProcessorBuilder extends AbstractDateProcessorBuilder {
/**
* 標準の書式を取得する。
* @return 常に、'{@literal yyyy-MM-dd HH:mm:ss.SSS}' を返す。
*/
@Override
protected String getDefaultPattern() {
return "yyyy-MM-dd HH:mm:ss.SSS";
}
}