public interface ITokenizer
extends java.io.Closeable
| Modifier and Type | Method and Description |
|---|---|
int |
getLineNumber()
Gets the line number currently being tokenized (the first line is line 1).
|
java.lang.String |
getUntokenizedRow()
Returns the raw (untokenized) CSV row that was just read (which can potentially span multiple lines in the file).
|
boolean |
readColumns(java.util.List<java.lang.String> columns)
Reads a CSV row into the supplied List of columns (which can potentially span multiple lines in the file).
|
int getLineNumber()
readColumns(List) hasn't been called yetjava.lang.String getUntokenizedRow()
boolean readColumns(java.util.List<java.lang.String> columns)
throws java.io.IOException
columns - the List of columns to read intojava.io.IOException - when an IOException occursjava.lang.NullPointerException - if columns is nullSuperCsvException - on errors in parsing the inputCopyright © 2007-2014 Super CSV. All Rights Reserved.