public class CSVEntry extends Object
| Modifier and Type | Field and Description |
|---|---|
int |
colNo
The cell's column number
|
String |
contents
The contents of a cell
|
int |
lineNo
The cells's row number.
|
| Constructor and Description |
|---|
CSVEntry(String contents)
Creates a new CSVEntry and sets the source and column numbers to -1.
|
CSVEntry(String contents,
int lineNo,
int colNo)
Main constructor for a CSVEntry, used by
CSVLexer. |
public String contents
public int colNo
public int lineNo
public CSVEntry(String contents)
contents - The string contents of the cell, which may not have been in the source.Copyright © 2015. All rights reserved.