org.supercsv.ext.builder.CellProcessorBuilderFactory 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 org.supercsv.ext.builder;
/**
* {@link CellProcessorBuilder}のインスタンスを作成するインタフェース
*
* @since 1.1
* @author T.TSUCHIE
*
*/
public interface CellProcessorBuilderFactory {
/**
* 指定した{@link CellProcessorBuilder}のインスタンスを作成する。
* @param builderClass 作成するクラスタイプ。
* @return 作成したインスタンス。
* @throws Exception インスタンスの作成に失敗した場合。
*/
> T create(Class builderClass) throws Exception;
}