org.sfm.csv.impl.DelayedGetter Maven / Gradle / Ivy
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();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy