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) | |
| Gets the data stored in the column specified by index. | ||
abstract java.lang.Object | get(java.lang.String) | |
| 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. | ||
| Property Getters/Setters Detail |
|---|
getColumns | |
public abstract java.lang.String[] getColumns() | |
getCount | |
public abstract int getCount() | |
get | |
public abstract java.lang.Object get(int columnIndex) | |
columnIndex - The zero-based index of the column.get | |
public abstract java.lang.Object get(java.lang.String columnName) | |
columnName - The column name.| Method Detail |
|---|
beforeFirst | |
public abstract void beforeFirst() | |
next | |
public abstract boolean next() | |