com.github.mygreen.supercsv.builder.joda.YearMonthProcessorBuilder 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.joda;
import org.joda.time.YearMonth;
/**
* {@link YearMonth}に対するAutoBuilder。
* @since 2.1
* @author T.TSUCHIE
*
*/
public class YearMonthProcessorBuilder extends AbstractJodaProcessorBuilder {
/**
* {@literal yyyy-MM}を返す。
*/
@Override
protected String getDefaultPattern() {
return "yyyy-MM";
}
}