com.github.skjolber.stcsv.column.tri.DoubleCsvFieldMapperTriBuilder 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.column.tri;
import com.github.skjolber.stcsv.builder.CsvBuilderException;
import com.github.skjolber.stcsv.builder.CsvMappingBuilder2;
import com.github.skjolber.stcsv.builder.SetterProjectionHelper;
import com.github.skjolber.stcsv.column.bi.DoubleCsvFieldMapperBuilder;
import com.github.skjolber.stcsv.projection.TriConsumerProjection;
import com.github.skjolber.stcsv.projection.ValueProjection;
public class DoubleCsvFieldMapperTriBuilder> extends DoubleCsvFieldMapperBuilder {
protected ObjDoubleTriConsumer triConsumer;
protected Class intermediate;
public DoubleCsvFieldMapperTriBuilder(B parent, String name, Class intermediate) {
super(parent, name);
this.intermediate = intermediate;
}
public DoubleCsvFieldMapperTriBuilder consumer(ObjDoubleTriConsumer consumer) {
this.triConsumer = consumer;
return this;
}
protected ValueProjection getProjection(int index, SetterProjectionHelper proxy) throws CsvBuilderException {
if(triConsumer != null) {
return new TriConsumerProjection(new DoubleCsvColumnValueTriConsumer<>(triConsumer), index);
}
return super.getProjection(index, proxy);
}
}