Uses of Class
loci.poi.hssf.usermodel.HSSFCell
-
Packages that use HSSFCell Package Description loci.poi.hssf.usermodel 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 HSSFCell Modifier and Type Method Description HSSFCell
HSSFRow. createCell(short column)
Use this to create new cells within the row and return it.HSSFCell
HSSFRow. createCell(short column, int type)
Use this to create new cells within the row and return it.protected HSSFCell
HSSFRow. createCellFromRecord(CellValueRecordInterface cell)
create a high level HSSFCell object from an existing low level record.HSSFCell
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 HSSFCell Modifier and Type Method Description static boolean
HSSFDateUtil. 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 boolean
HSSFDateUtil. isCellInternalDateFormatted(HSSFCell cell)
Check if a cell contains a date, checking only for internal excel date formats.void
HSSFRow. removeCell(HSSFCell cell)
remove the HSSFCell from this row.
-