![JAR search and dependency download from the Maven repository](/logo.png)
org.sfm.csv.impl.cellreader.ByteCellValueReaderImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simpleFlatMapper Show documentation
Show all versions of simpleFlatMapper Show documentation
Java library to map flat record - ResultSet, csv - to java object with minimum configuration and low footprint.
package org.sfm.csv.impl.cellreader;
import org.sfm.csv.impl.ParsingContext;
public class ByteCellValueReaderImpl implements ByteCellValueReader {
@Override
public Byte read(char[] chars, int offset, int length, ParsingContext parsingContext) {
if (length == 0) return null;
return readByte(chars, offset, length, parsingContext);
}
@Override
public byte readByte(char[] chars, int offset, int length, ParsingContext parsingContext) {
return (byte) IntegerCellValueReaderImpl.parseInt(chars, offset, length);
}
@Override
public String toString() {
return "ByteCellValueReaderImpl{}";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy