Uses of Class
org.apache.poi.hssf.usermodel.HSSFCell
-
Packages that use HSSFCell Package Description org.apache.poi.hssf.usermodel The usermodel package maps HSSF low level structures to familiar workbook/sheet model -
-
Uses of HSSFCell in org.apache.poi.hssf.usermodel
Methods in org.apache.poi.hssf.usermodel that return HSSFCell Modifier and Type Method Description HSSFCell
HSSFRow. createCell(int column)
Use this to create new cells within the row and return it.HSSFCell
HSSFRow. createCell(int columnIndex, CellType type)
Use this to create new cells within the row and return it.HSSFCell
HSSFFormulaEvaluator. evaluateInCell(Cell cell)
HSSFCell
HSSFRow. getCell(int cellnum)
Get the hssfcell representing a given column (logical cell) 0-based.HSSFCell
HSSFRow. getCell(int cellnum, Row.MissingCellPolicy policy)
Get the hssfcell representing a given column (logical cell) 0-based.Methods in org.apache.poi.hssf.usermodel that return types with arguments of type HSSFCell Modifier and Type Method Description CellRange<HSSFCell>
HSSFSheet. removeArrayFormula(Cell cell)
CellRange<HSSFCell>
HSSFSheet. setArrayFormula(String formula, CellRangeAddress range)
Methods in org.apache.poi.hssf.usermodel with parameters of type HSSFCell Modifier and Type Method Description void
HSSFRow. moveCell(HSSFCell cell, short newColumn)
Moves the supplied cell to a new column, which must not already have a cell there!void
HSSFFormulaEvaluator. notifyDeleteCell(HSSFCell cell)
Should be called to tell the cell value cache that the specified cell has just been deleted.void
HSSFFormulaEvaluator. notifyUpdateCell(HSSFCell cell)
Should be called to tell the cell value cache that the specified (value or formula) cell has changed.
-