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

org.sfm.csv.impl.cellreader.ShortCellValueReader Maven / Gradle / Ivy

package org.sfm.csv.impl.cellreader;

import org.sfm.csv.CellValueReader;
import org.sfm.csv.impl.ParsingContext;

public class ShortCellValueReader implements CellValueReader {

	@Override
	public Short read(char[] chars, int offset, int length, ParsingContext parsingContext) {
		return new Short((short)IntegerCellValueReader.parseInt(chars, offset, length));
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy