com.aspose.cells

Interface ICellsDataTable

  • public interface ICellsDataTable 

Represents data table.

Property Getters/Setters Summary
abstract java.lang.String[]getColumns()
Gets the columns' name.
abstract intgetCount()
Gets the count of the records. -1 for unknown records count.
abstract java.lang.Objectget(int columnIndex)
Gets the data stored in the column specified by index.
abstract java.lang.Objectget(java.lang.String columnName)
Gets the data stored in the column specified by column name.
 
Method Summary
abstract voidbeforeFirst()
Move the cursor to the front of this object, just before the first row.
abstract booleannext()
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