| Package | Description | 
|---|---|
| loci.poi.hssf.usermodel | 
 usermodel package maps HSSF low level strutures to familiar workbook/sheet model 
 | 
| Modifier and Type | Field and Description | 
|---|---|
private HSSFCell[] | 
HSSFRow.cells  | 
| Modifier and Type | Method and 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. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
private void | 
HSSFRow.addCell(HSSFCell cell)
used internally to add a cell. 
 | 
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. 
 | 
Copyright © 2016 Open Microscopy Environment