public interface RowData
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
getCell(int icol)
Returns the contents of one cell in this row.
|
java.lang.Object[] |
getRow()
Returns the contents of all the cells in this row.
|
java.lang.Object getCell(int icol) throws java.io.IOException
icol
- column indexjava.io.IOException
- if there's a problem reading the valuejava.lang.Object[] getRow() throws java.io.IOException
Note that implementations are in general (unless otherwise restricted by subtype documented contracts) free to return the same array, with different contents, on subsequent invocations of this method, so callers should not rely on the contents being undisturbed.
java.io.IOException