org.sfm.csv.impl.primitive.LongDelayedGetter 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.LongGetter;
public class LongDelayedGetter implements LongGetter[]>, Getter[], Long> {
private final int index;
public LongDelayedGetter(int index) {
this.index = index;
}
@SuppressWarnings("unchecked")
@Override
public long getLong(DelayedCellSetter[] target) throws Exception {
return ((LongDelayedCellSetter)target[index]).getLong();
}
@Override
public Long get(DelayedCellSetter[] target) throws Exception {
return getLong(target);
}
@Override
public String toString() {
return "LongDelayedGetter{" +
"index=" + index +
'}';
}
}