public interface Spreadsheet
Spreadsheet
actually refers to a collection of (spread)sheets.
Just like a Workbook...void activateSheet(String aName)
Boolean getBooleanCellValue()
Date getDateCellValue()
BasicMatrix getMatrixSheetValue()
Number getNumberCellValue()
String[] getSheetNames()
String getStringCellValue()
void goHome()
void goTo(int aColumn, int aRow)
void goToFirstColumnOnNextRow()
void goToFirstRowInNextColumn()
void goToNextColumn()
void goToNextRow()
void setBooleanCellValue(Boolean aCellValue)
void setDateCellValue(Date aCellValue)
void setMatrixSheetValue(BasicMatrix aSheetValue)
void setNumberCellValue(Number aCellValue)
void setStringCellValue(String aCellValue)
void setTableSheetValue(Table aSheetValue)
byte[] toByteArray()
void writeToFile(File aFile)