public interface ICellsDataTable
Property Getters/Setters Summary | ||
---|---|---|
abstract java.lang.String[] | getColumns() | |
Gets the columns' name.
|
||
abstract int | getCount() | |
Gets the count of the records. -1 for unknown records count.
|
||
abstract java.lang.Object | get(int columnIndex) | |
Gets the data stored in the column specified by index.
|
||
abstract java.lang.Object | get(java.lang.String columnName) | |
Gets the data stored in the column specified by column name.
|
Method Summary | ||
---|---|---|
abstract void | beforeFirst() | |
Move the cursor to the front of this object, just before the first row.
|
||
abstract boolean | next() | |
Moves the cursor down one row from its current position.
|
public abstract java.lang.String[] getColumns()
public abstract int getCount()
public abstract java.lang.Object get(int columnIndex)
columnIndex
- The zero-based index of the column.public abstract java.lang.Object get(java.lang.String columnName)
columnName
- The column name.