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

com.github.mygreen.supercsv.builder.ProcessorBuilder Maven / Gradle / Ivy

Go to download

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

There is a newer version: 2.3
Show newest version
package com.github.mygreen.supercsv.builder;

import java.util.Optional;

import org.supercsv.cellprocessor.ift.CellProcessor;


/**
 * {@link CellProcessor}を組み立てるためのインタフェース。
 * 
 * @param  処理対象のクラスタイプ。
 * @version 2.0
 * @since 1.1
 * @author T.TSUCHIE
 *
 */
public interface ProcessorBuilder {
    
    /**
     * 読み込み用の{@link CellProcessor}を組み立てる。
     * @param type フィールドのクラスタイプ。
     * @param field フィールド情報。
     * @param config 設定情報
     * @param groups グループ情報
     * @return 組み立てた{@link CellProcessor}。
     */
    Optional buildForReading(Class type, FieldAccessor field, Configuration config, Class[] groups);
    
    /**
     * 書き込み用の{@link CellProcessor}を組み立てる。
     * @param type フィールドのクラスタイプ。
     * @param field フィールド情報。
     * @param config 設定情報
     * @param groups グループ情報
     * @return 組み立てた{@link CellProcessor}。
     */
    Optional buildForWriting(Class type, FieldAccessor field, Configuration config, Class[] groups);
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy