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

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

The newest version!
package org.supercsv.ext.builder;


/**
 * {@link CellProcessorBuilder}のインスタンスを作成するインタフェース
 * 
 * @version 1.2
 * @since 1.2
 * @author T.TSUCHIE
 *
 */
public interface CellProcessorBuilderFactory {
    
    /**
     * 指定した{@link CellProcessorBuilder}のインスタンスを作成する。
     * @param builderClass 作成する builderClass
     * @return
     * @throws Exception 
     */
    > T create(Class builderClass) throws Exception;
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy