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

org.sfm.jdbc.impl.getter.BigDecimalResultSetGetter Maven / Gradle / Ivy

package org.sfm.jdbc.impl.getter;

import java.math.BigDecimal;
import java.sql.ResultSet;

import org.sfm.reflect.Getter;

public final class BigDecimalResultSetGetter implements Getter {

	private final int column;

	public BigDecimalResultSetGetter(final int column) {
		this.column = column;
	}

	@Override
	public BigDecimal get(final ResultSet target) throws Exception {
		return target.getBigDecimal(column);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy