org.sfm.csv.impl.cellreader.BooleanCellValueReaderUnbox 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.CellValueReader;
import org.sfm.csv.impl.ParsingContext;
public class BooleanCellValueReaderUnbox implements BooleanCellValueReader {
private final CellValueReader reader;
public BooleanCellValueReaderUnbox(CellValueReader customReader) {
this.reader = customReader;
}
@Override
public boolean readBoolean(char[] chars, int offset, int length, ParsingContext parsingContext) {
return reader.read(chars, offset, length, parsingContext);
}
@Override
public Boolean read(char[] chars, int offset, int length, ParsingContext parsingContext) {
return reader.read(chars, offset, length, parsingContext);
}
@Override
public String toString() {
return "BooleanCellValueReaderUnbox{" +
"reader=" + reader +
'}';
}
}