![JAR search and dependency download from the Maven repository](/logo.png)
com.github.mygreen.supercsv.builder.joda.LocalDateProcessorBuilder 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.LocalDate;
/**
* {@link LocalDate}に対するAutoBuilder。
* @version 2.0
* @since 1.2
* @author T.TSUCHIE
*
*/
public class LocalDateProcessorBuilder extends AbstractJodaProcessorBuilder {
/**
* {@literal yyyy-MM-dd}を返す。
*/
@Override
protected String getDefaultPattern() {
return "yyyy-MM-dd";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy