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

com.github.mygreen.supercsv.cellprocessor.conversion.FullCharFactory Maven / Gradle / Ivy

Go to download

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

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

import java.util.Optional;

import org.supercsv.cellprocessor.ift.CellProcessor;
import org.supercsv.cellprocessor.ift.StringCellProcessor;

import com.github.mygreen.supercsv.annotation.conversion.CsvFullChar;
import com.github.mygreen.supercsv.builder.Configuration;
import com.github.mygreen.supercsv.builder.FieldAccessor;
import com.github.mygreen.supercsv.cellprocessor.ConversionProcessorFactory;
import com.github.mygreen.supercsv.cellprocessor.format.TextFormatter;

/**
 * アノテーション{@link CsvFullChar}をハンドリングして、CellProcessorの{@link FullChar}を作成する。
 * 
 * @since 2.0
 * @author T.TSUCHIE
 *
 */
public class FullCharFactory implements ConversionProcessorFactory {
    
    @Override
    public Optional create(final CsvFullChar anno, final Optional next,
            final FieldAccessor field, final TextFormatter formatter, final Configuration config) {
        
        final CharCategory[] categories;
        if(anno.categories().length == 0) {
            categories = CharCategory.values();
        } else {
            categories = anno.categories();
        }
        
        final FullChar processor = next.map(n -> new FullChar(categories, (StringCellProcessor) n))
                .orElseGet(() -> new FullChar(categories));
        
        return Optional.of(processor);
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy