org.sfm.csv.impl.primitive.FloatDelayedCellSetter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simpleFlatMapper Show documentation
Show all versions of simpleFlatMapper Show documentation
Java library to map flat record - ResultSet, csv - to java object with minimum configuration and low footprint.
package org.sfm.csv.impl.primitive;
import org.sfm.csv.impl.DelayedCellSetter;
import org.sfm.csv.impl.ParsingContext;
import org.sfm.csv.impl.cellreader.FloatCellValueReader;
import org.sfm.reflect.primitive.FloatSetter;
public class FloatDelayedCellSetter implements DelayedCellSetter {
private final FloatSetter setter;
private final FloatCellValueReader reader;
private float value;
public FloatDelayedCellSetter(FloatSetter setter, FloatCellValueReader reader) {
this.setter = setter;
this.reader = reader;
}
@Override
public Float getValue() {
return getFloat();
}
public float getFloat() {
float v = value;
value = 0;
return v;
}
@Override
public void set(T t) throws Exception {
float v = value;
value = 0;
setter.setFloat(t, v);
}
@Override
public boolean isSettable() {
return setter != null;
}
@Override
public void set(char[] chars, int offset, int length, ParsingContext parsingContext) throws Exception {
this.value = reader.readFloat(chars, offset, length, parsingContext);
}
@Override
public String toString() {
return "FloatDelayedCellSetter{" +
"setter=" + setter +
", reader=" + reader +
'}';
}
}