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

org.sfm.csv.cell.CharCellValueReader Maven / Gradle / Ivy

package org.sfm.csv.cell;

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

public class CharCellValueReader implements CellValueReader {

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy