Uses of Class
org.apache.poi.hssf.usermodel.HSSFWorkbook
-
Packages that use HSSFWorkbook Package Description org.apache.poi.hssf.eventusermodel HSSF eventmodel Package provides an event-based API for reading HSSF files.org.apache.poi.hssf.extractor org.apache.poi.hssf.model Provides low level API structures for reading, writing, modifying XLS files.org.apache.poi.hssf.usermodel The usermodel package maps HSSF low level structures to familiar workbook/sheet model -
-
Uses of HSSFWorkbook in org.apache.poi.hssf.eventusermodel
Methods in org.apache.poi.hssf.eventusermodel that return HSSFWorkbook Modifier and Type Method Description HSSFWorkbook
EventWorkbookBuilder.SheetRecordCollectingListener. getStubHSSFWorkbook()
-
Uses of HSSFWorkbook in org.apache.poi.hssf.extractor
Methods in org.apache.poi.hssf.extractor that return HSSFWorkbook Modifier and Type Method Description HSSFWorkbook
ExcelExtractor. getDocument()
HSSFWorkbook
ExcelExtractor. getFilesystem()
Constructors in org.apache.poi.hssf.extractor with parameters of type HSSFWorkbook Constructor Description ExcelExtractor(HSSFWorkbook wb)
-
Uses of HSSFWorkbook in org.apache.poi.hssf.model
Methods in org.apache.poi.hssf.model with parameters of type HSSFWorkbook Modifier and Type Method Description static Ptg[]
HSSFFormulaParser. parse(String formula, HSSFWorkbook workbook)
Convenience method for parsing cell formulas.static Ptg[]
HSSFFormulaParser. parse(String formula, HSSFWorkbook workbook, FormulaType formulaType)
static Ptg[]
HSSFFormulaParser. parse(String formula, HSSFWorkbook workbook, FormulaType formulaType, int sheetIndex)
static String
HSSFFormulaParser. toFormulaString(HSSFWorkbook book, Ptg[] ptgs)
Static method to convert an array ofPtg
s in RPN order to a human readable string format in infix mode. -
Uses of HSSFWorkbook in org.apache.poi.hssf.usermodel
Fields in org.apache.poi.hssf.usermodel declared as HSSFWorkbook Modifier and Type Field Description protected HSSFWorkbook
HSSFSheet. _workbook
Methods in org.apache.poi.hssf.usermodel that return HSSFWorkbook Modifier and Type Method Description static HSSFWorkbook
HSSFWorkbook. create(InternalWorkbook book)
HSSFWorkbook
HSSFWorkbookFactory. create()
Create a new empty WorkbookHSSFWorkbook
HSSFWorkbookFactory. create(DirectoryNode root, String password)
Creates a HSSFWorkbook from the given DirectoryNodestatic HSSFWorkbook
HSSFWorkbookFactory. createWorkbook(POIFSFileSystem fs)
Creates a HSSFWorkbook from the givenPOIFSFileSystem
HSSFWorkbook
HSSFSheet. getWorkbook()
Return the parent workbookMethods in org.apache.poi.hssf.usermodel with parameters of type HSSFWorkbook Modifier and Type Method Description static HSSFEvaluationWorkbook
HSSFEvaluationWorkbook. create(HSSFWorkbook book)
static HSSFFormulaEvaluator
HSSFFormulaEvaluator. create(HSSFWorkbook workbook, IStabilityClassifier stabilityClassifier, UDFFinder udfFinder)
void
HSSFChart. createBarChart(HSSFWorkbook workbook, HSSFSheet parentSheet)
Creates a bar chart.static void
HSSFFormulaEvaluator. evaluateAllFormulaCells(HSSFWorkbook wb)
Loops over all cells in all sheets of the supplied workbook.HSSFColor
HSSFFont. getHSSFColor(HSSFWorkbook wb)
get the color value for the fontstatic void
HSSFOptimiser. optimiseCellStyles(HSSFWorkbook workbook)
Goes through the Wokrbook, optimising the cell styles by removing duplicate ones, and ones that aren't used.static void
HSSFOptimiser. optimiseFonts(HSSFWorkbook workbook)
Goes through the Workbook, optimising the fonts by removing duplicate ones.void
HSSFCellStyle. verifyBelongsToWorkbook(HSSFWorkbook wb)
Verifies that this style belongs to the supplied Workbook.Constructors in org.apache.poi.hssf.usermodel with parameters of type HSSFWorkbook Constructor Description EscherGraphics(HSSFShapeGroup escherGroup, HSSFWorkbook workbook, Color forecolor, float verticalPointsPerPixel)
Construct an escher graphics object.HSSFBorderFormatting(CFRuleBase cfRuleRecord, HSSFWorkbook workbook)
HSSFCell(HSSFWorkbook book, HSSFSheet sheet, int row, short col)
Creates new Cell - Should only be called by HSSFRow.HSSFCell(HSSFWorkbook book, HSSFSheet sheet, int row, short col, CellType type)
Creates new Cell - Should only be called by HSSFRow.HSSFCell(HSSFWorkbook book, HSSFSheet sheet, CellValueRecordInterface cval)
Creates an HSSFCell from a CellValueRecordInterface.HSSFCellStyle(short index, ExtendedFormatRecord rec, HSSFWorkbook workbook)
Creates new HSSFCellStyle why would you want to do this??HSSFFormulaEvaluator(HSSFWorkbook workbook)
HSSFFormulaEvaluator(HSSFWorkbook workbook, IStabilityClassifier stabilityClassifier)
HSSFPatternFormatting(CFRuleBase cfRuleRecord, HSSFWorkbook workbook)
HSSFSheet(HSSFWorkbook workbook)
Creates new HSSFSheet - called by HSSFWorkbook to create a sheet from scratch.HSSFSheet(HSSFWorkbook workbook, InternalSheet sheet)
Creates an HSSFSheet representing the given Sheet object.
-