public interface ParseWriter extends Freezable
Modifier and Type | Interface and Description |
---|---|
static class |
ParseWriter.ParseErr |
Modifier and Type | Method and Description |
---|---|
void |
addError(ParseWriter.ParseErr err) |
void |
addInvalidCol(int colIdx) |
void |
addNumCol(int colIdx,
double d) |
void |
addNumCol(int colIdx,
long number,
int exp) |
void |
addStrCol(int colIdx,
BufferedString str) |
boolean |
hasErrors() |
void |
invalidLine(ParseWriter.ParseErr err) |
boolean |
isString(int colIdx) |
long |
lineNum() |
void |
newLine() |
ParseWriter.ParseErr[] |
removeErrors() |
void |
rollbackLine() |
void |
setColumnNames(java.lang.String[] names) |
void |
setIsAllASCII(int colIdx,
boolean b) |
asBytes, clone, frozenType, read, readJSON, reloadFromBytes, write, writeJSON
void setColumnNames(java.lang.String[] names)
void newLine()
boolean isString(int colIdx)
void addNumCol(int colIdx, long number, int exp)
void addNumCol(int colIdx, double d)
void addInvalidCol(int colIdx)
void addStrCol(int colIdx, BufferedString str)
void rollbackLine()
void invalidLine(ParseWriter.ParseErr err)
void addError(ParseWriter.ParseErr err)
void setIsAllASCII(int colIdx, boolean b)
boolean hasErrors()
ParseWriter.ParseErr[] removeErrors()
long lineNum()