com.github.skjolber.stcsv.databinder.column.tri.LongCsvFieldMapperTriBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of databinder Show documentation
Show all versions of databinder Show documentation
High-performance CSV databinding library
package com.github.skjolber.stcsv.databinder.column.tri;
import com.github.skjolber.stcsv.builder.CsvBuilderException;
import com.github.skjolber.stcsv.databinder.builder.CsvMappingBuilder2;
import com.github.skjolber.stcsv.databinder.builder.SetterProjectionHelper;
import com.github.skjolber.stcsv.databinder.column.bi.LongCsvFieldMapperBuilder;
import com.github.skjolber.stcsv.databinder.projection.TriConsumerProjection;
import com.github.skjolber.stcsv.databinder.projection.ValueProjection;
public class LongCsvFieldMapperTriBuilder> extends LongCsvFieldMapperBuilder {
protected ObjLongTriConsumer triConsumer;
protected Class intermediate;
public LongCsvFieldMapperTriBuilder(B parent, String name, Class intermediate) {
super(parent, name);
this.intermediate = intermediate;
}
public LongCsvFieldMapperTriBuilder consumer(ObjLongTriConsumer consumer) {
this.triConsumer = consumer;
return this;
}
protected ValueProjection getProjection(int index, SetterProjectionHelper proxy) throws CsvBuilderException {
if(triConsumer != null) {
return new TriConsumerProjection(new LongCsvColumnValueTriConsumer<>(triConsumer), index);
}
return super.getProjection(index, proxy);
}
}