org.formulacompiler.spreadsheet
Interface Spreadsheet.Sheet

All Superinterfaces:
Describable
Enclosing interface:
Spreadsheet

public static interface Spreadsheet.Sheet
extends Describable

Returns information about a worksheet.

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

Author:
peo

Method Summary
 java.lang.String getName()
          Returns the name.
 Spreadsheet.Row[] getRows()
          Returns the rows defined in the worksheet.
 int getSheetIndex()
          Returns the sheet index (0 based) within the spreadsheet.
 Spreadsheet getSpreadsheet()
          Returns the spreadsheet this worksheet is part of.
 
Methods inherited from interface org.formulacompiler.compiler.Describable
describe, toString
 

Method Detail

getSpreadsheet

Spreadsheet getSpreadsheet()
Returns the spreadsheet this worksheet is part of.


getSheetIndex

int getSheetIndex()
Returns the sheet index (0 based) within the spreadsheet.


getName

java.lang.String getName()
Returns the name.


getRows

Spreadsheet.Row[] getRows()
Returns the rows defined in the worksheet.