All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sfm.csv.DelayedGetter Maven / Gradle / Ivy

package org.sfm.csv;

import org.sfm.reflect.Getter;

@SuppressWarnings("rawtypes")
public class DelayedGetter implements Getter {
	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