![JAR search and dependency download from the Maven repository](/logo.png)
com.github.mygreen.supercsv.cellprocessor.conversion.HalfCharFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of super-csv-annotation Show documentation
Show all versions of super-csv-annotation Show documentation
CSVのJavaライブラリであるSuperCSVに、アノテーション機能を追加したライブラリです。
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.CsvHalfChar;
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 CsvHalfChar}をハンドリングして、CellProcessorの{@link HalfChar}を作成する。
*
* @since 2.0
* @author T.TSUCHIE
*
*/
public class HalfCharFactory implements ConversionProcessorFactory {
@Override
public Optional create(final CsvHalfChar 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 HalfChar processor = next.map(n -> new HalfChar(categories, (StringCellProcessor) n))
.orElseGet(() -> new HalfChar(categories));
return Optional.of(processor);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy