All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.supercsv.ext.builder.CellProcessorBuilderFactory Maven / Gradle / Ivy

Go to download

CSVのJavaライブラリであるSuperCSVに、アノテーション機能を追加したライブラリです。

There is a newer version: 2.3
Show newest version
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;
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy