Class CsvParseContext
public class CsvParseContext
extends Object
Represents the CSV parse context of the current cell.
-
Constructor Summary
Constructors
Create a CsvParseContext object.
-
Method Summary
int
Gets the column index of the current cell.
int
Gets the row index of the current cell.
Gets the origin text of the current cell before parsed.
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
CsvParseContext
public CsvParseContext(int row,
int column,
String text)
Create a CsvParseContext object.
-
Method Details
-
getRow
public int getRow()
Gets the row index of the current cell.
-
getColumn
public int getColumn()
Gets the column index of the current cell.
-
getText
Gets the origin text of the current cell before parsed.