org.formulacompiler.spreadsheet
Interface Spreadsheet.Row

All Superinterfaces:
Describable
Enclosing interface:
Spreadsheet

public static interface Spreadsheet.Row
extends Describable

Returns information about a row.

This interface is an API only. Do not implement it yourself.

Author:
peo

Method Summary
 Spreadsheet.Cell[] getCells()
          Returns the cells defined in the row.
 int getRowIndex()
          Returns the row index (0 based) within the sheet.
 Spreadsheet.Sheet getSheet()
          Returns the sheet this row is part of.
 
Methods inherited from interface org.formulacompiler.compiler.Describable
describe, toString
 

Method Detail

getSheet

Spreadsheet.Sheet getSheet()
Returns the sheet this row is part of.


getRowIndex

int getRowIndex()
Returns the row index (0 based) within the sheet.


getCells

Spreadsheet.Cell[] getCells()
Returns the cells defined in the row.