org.sfm.csv.impl.primitive.IntDelayedGetter 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.reflect.Getter;
import org.sfm.reflect.primitive.IntGetter;
public class IntDelayedGetter implements IntGetter[]>, Getter[], Integer> {
private final int index;
public IntDelayedGetter(int index) {
this.index = index;
}
@SuppressWarnings("unchecked")
@Override
public int getInt(DelayedCellSetter[] target) throws Exception {
return ((IntDelayedCellSetter)target[index]).getInt();
}
@Override
public Integer get(DelayedCellSetter[] target) throws Exception {
return getInt(target);
}
@Override
public String toString() {
return "IntDelayedGetter{" +
"index=" + index +
'}';
}
}