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

com.github.mygreen.supercsv.cellprocessor.constraint.UniqueFactory 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.constraint;

import java.util.Optional;

import org.supercsv.cellprocessor.ift.CellProcessor;

import com.github.mygreen.supercsv.annotation.constraint.CsvUnique;
import com.github.mygreen.supercsv.builder.Configuration;
import com.github.mygreen.supercsv.builder.FieldAccessor;
import com.github.mygreen.supercsv.cellprocessor.ConstraintProcessorFactory;
import com.github.mygreen.supercsv.cellprocessor.format.TextFormatter;

/**
 * アノテーション{@link CsvUnique}をハンドリングして、CellProcessorの{@link Unique}を作成する。
 * 
 * @since 2.0
 * @author T.TSUCHIE
 *
 */
public class UniqueFactory implements ConstraintProcessorFactory {
    
    @Override
    public Optional create(final CsvUnique anno, final Optional next,
            final FieldAccessor field, final TextFormatter formatter, final Configuration config) {
        
        @SuppressWarnings("unchecked")
        final TextFormatter typeFormatter = (TextFormatter)formatter;
        
        final Unique processor = next.map(n -> new Unique(typeFormatter, n))
                .orElseGet(() -> new Unique(typeFormatter));
        
        processor.setValidationMessage(anno.message());
        
        return Optional.of(processor);
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy