Uses of Class
loci.poi.hssf.usermodel.HSSFCell
Packages that use HSSFCell
Package
Description
usermodel package maps HSSF low level strutures to familiar workbook/sheet model
-
Uses of HSSFCell in loci.poi.hssf.usermodel
Methods in loci.poi.hssf.usermodel that return HSSFCellModifier and TypeMethodDescriptionHSSFRow.createCell(short column) Use this to create new cells within the row and return it.HSSFRow.createCell(short column, int type) Use this to create new cells within the row and return it.protected HSSFCellHSSFRow.createCellFromRecord(CellValueRecordInterface cell) create a high level HSSFCell object from an existing low level record.HSSFRow.getCell(short cellnum) get the hssfcell representing a given column (logical cell) 0-based.Methods in loci.poi.hssf.usermodel with parameters of type HSSFCellModifier and TypeMethodDescriptionstatic booleanHSSFDateUtil.isCellDateFormatted(HSSFCell cell) Check if a cell contains a date Since dates are stored internally in Excel as double values we infer it is a date if it is formatted as such.static booleanHSSFDateUtil.isCellInternalDateFormatted(HSSFCell cell) Check if a cell contains a date, checking only for internal excel date formats.voidHSSFRow.removeCell(HSSFCell cell) remove the HSSFCell from this row.