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

org.sfm.csv.impl.primitive.IntDelayedGetter Maven / Gradle / Ivy

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 Integer.valueOf(getInt(target));
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy