com.aspose.cells.ICellsDataTable.html Maven / Gradle / Ivy
ICellsDataTable
com.aspose.cells
Interface ICellsDataTable
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() |
Gets the columns' name.
getCount | |
public abstract int getCount() |
Gets the count of the records. -1 for unknown records count.
get | |
public abstract java.lang.Object get(int columnIndex) |
Gets the data stored in the column specified by index. - Parameters:
columnIndex
- The zero-based index of the column.
- Returns:
get | |
public abstract java.lang.Object get(java.lang.String columnName) |
Gets the data stored in the column specified by column name. - Parameters:
columnName
- The column name.
- Returns:
Method Detail |
---|
beforeFirst | |
public abstract void beforeFirst() |
Move the cursor to the front of this object, just before the first row.
next | |
public abstract boolean next() |
Moves the cursor down one row from its current position. - Returns:
- if the new current row is valid; false if there are no more rows
See Also:
Aspose.Cells Documentation - the home page for the Aspose.Cells Product Documentation.
Aspose.Cells Support Forum - our preferred method of support.