public class InMemorySpreadsheet extends Object implements Spreadsheet
| Constructor and Description |
|---|
InMemorySpreadsheet() |
InMemorySpreadsheet(InputStream aStream) |
public InMemorySpreadsheet()
public InMemorySpreadsheet(InputStream aStream)
public void activateSheet(String aName)
activateSheet in interface Spreadsheetpublic Boolean getBooleanCellValue()
getBooleanCellValue in interface Spreadsheetpublic Object getCellValue()
public Date getDateCellValue()
getDateCellValue in interface Spreadsheetpublic BasicMatrix getMatrixSheetValue()
getMatrixSheetValue in interface Spreadsheetpublic Number getNumberCellValue()
getNumberCellValue in interface Spreadsheetpublic String[] getSheetNames()
getSheetNames in interface Spreadsheetpublic String getStringCellValue()
getStringCellValue in interface Spreadsheetpublic void goHome()
goHome in interface Spreadsheetpublic void goTo(int aColumn,
int aRow)
goTo in interface Spreadsheetpublic void goToFirstColumnOnNextRow()
goToFirstColumnOnNextRow in interface Spreadsheetpublic void goToFirstRowInNextColumn()
goToFirstRowInNextColumn in interface Spreadsheetpublic void goToNextColumn()
goToNextColumn in interface Spreadsheetpublic void goToNextRow()
goToNextRow in interface Spreadsheetpublic void setBooleanCellValue(Boolean aCellValue)
setBooleanCellValue in interface Spreadsheetpublic void setBooleanColumnValues(List<Boolean> someColumnValues)
setBooleanColumnValues in interface Spreadsheetpublic void setBooleanRowValues(List<Boolean> someRowValues)
setBooleanRowValues in interface Spreadsheetpublic void setDateCellValue(Date aCellValue)
setDateCellValue in interface Spreadsheetpublic void setDateColumnValues(List<Date> someColumnValues)
setDateColumnValues in interface Spreadsheetpublic void setDateRowValues(List<Date> someRowValues)
setDateRowValues in interface Spreadsheetpublic void setMatrixSheetValue(BasicMatrix aSheetValue)
setMatrixSheetValue in interface Spreadsheetpublic void setNumberCellValue(Number aCellValue)
setNumberCellValue in interface Spreadsheetpublic void setNumberCellValue(Number aCellValue, String aPattern)
setNumberCellValue in interface Spreadsheetpublic void setNumberColumnValues(List<Number> someColumnValues)
setNumberColumnValues in interface Spreadsheetpublic void setNumberRowValues(List<Number> someRowValues)
setNumberRowValues in interface Spreadsheetpublic void setStringCellValue(String aCellValue)
setStringCellValue in interface Spreadsheetpublic void setStringColumnValues(List<String> someColumnValues)
setStringColumnValues in interface Spreadsheetpublic void setStringRowValues(List<String> someRowValues)
setStringRowValues in interface Spreadsheetpublic void setTableSheetValue(Table aSheetValue)
setTableSheetValue in interface Spreadsheetpublic byte[] toByteArray()
toByteArray in interface Spreadsheetpublic void writeToFile(File aFile)
writeToFile in interface Spreadsheet