Uses of Class
loci.poi.hssf.model.Workbook
-
Packages that use Workbook Package Description loci.poi.hssf.model Provides low level API structures for reading, writing, modifying XLS files.loci.poi.hssf.record Record package contains class representations for XLS binary strutures.loci.poi.hssf.record.formula formula package contains binary PTG structures used in Formulasloci.poi.hssf.usermodel usermodel package maps HSSF low level strutures to familiar workbook/sheet model -
-
Uses of Workbook in loci.poi.hssf.model
Methods in loci.poi.hssf.model that return Workbook Modifier and Type Method Description static Workbook
Workbook. createWorkbook()
Creates an empty workbook object with three blank sheets and all the empty fields.static Workbook
Workbook. createWorkbook(List recs)
read support for low level API.Methods in loci.poi.hssf.model with parameters of type Workbook Modifier and Type Method Description static String
FormulaParser. toFormulaString(Workbook book, List lptgs)
Convience method which takes in a list then passes it to the other toFormulaString signature.static String
FormulaParser. toFormulaString(Workbook book, Ptg[] ptgs)
Static method to convert an array of Ptgs in RPN order to a human readable string format in infix mode.Constructors in loci.poi.hssf.model with parameters of type Workbook Constructor Description FormulaParser(String formula, Workbook book)
Create the formula parser, with the string that is to be parsed against the supplied workbook. -
Uses of Workbook in loci.poi.hssf.record
Methods in loci.poi.hssf.record with parameters of type Workbook Modifier and Type Method Description String
NameRecord. getAreaReference(Workbook book)
gets the reference , the area only (range) -
Uses of Workbook in loci.poi.hssf.record.formula
Constructors in loci.poi.hssf.record.formula with parameters of type Workbook Constructor Description NamePtg(String name, Workbook book)
Creates new NamePtg -
Uses of Workbook in loci.poi.hssf.usermodel
Fields in loci.poi.hssf.usermodel declared as Workbook Modifier and Type Field Description protected Workbook
HSSFSheet. book
Methods in loci.poi.hssf.usermodel that return Workbook Modifier and Type Method Description protected Workbook
HSSFCell. getBoundWorkbook()
Returns the Workbook that this Cell is bound toprotected Workbook
HSSFWorkbook. getWorkbook()
Methods in loci.poi.hssf.usermodel with parameters of type Workbook Modifier and Type Method Description String
HSSFCellStyle. getDataFormatString(Workbook workbook)
Get the contents of the format string, by looking up the DataFormat against the supplied workbookConstructors in loci.poi.hssf.usermodel with parameters of type Workbook Constructor Description HSSFCell(Workbook book, Sheet sheet, int row, short col)
Creates new Cell - Should only be called by HSSFRow.HSSFCell(Workbook book, Sheet sheet, int row, short col, int type)
Creates new Cell - Should only be called by HSSFRow.HSSFCell(Workbook book, Sheet sheet, int row, CellValueRecordInterface cval)
Creates an HSSFCell from a CellValueRecordInterface.HSSFDataFormat(Workbook workbook)
Construncts a new data formatter.HSSFName(Workbook book, NameRecord name)
Creates new HSSFName - called by HSSFWorkbook to create a sheet from scratch.HSSFRow(Workbook book, Sheet sheet, int rowNum)
Creates new HSSFRow from scratch.HSSFRow(Workbook book, Sheet sheet, RowRecord record)
Creates an HSSFRow from a low level RowRecord object.HSSFWorkbook(Workbook book)
-