org.sfm.csv.impl.primitive.BooleanDelayedGetter 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.CsvMapperCellHandler;
import org.sfm.reflect.Getter;
import org.sfm.reflect.primitive.BooleanGetter;
public class BooleanDelayedGetter implements BooleanGetter>, Getter, Boolean> {
private final int index;
public BooleanDelayedGetter(int index) {
this.index = index;
}
@SuppressWarnings("unchecked")
@Override
public boolean getBoolean(CsvMapperCellHandler target) throws Exception {
return ((BooleanDelayedCellSetter)target.getDelayedCellSetter(index)).consumeBoolean();
}
@Override
public Boolean get(CsvMapperCellHandler target) throws Exception {
return getBoolean(target);
}
@Override
public String toString() {
return "BooleanDelayedGetter{" +
"index=" + index +
'}';
}
}