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