Package | Description |
---|---|
loci.poi.hssf.model |
Provides low level API structures for reading, writing, modifying XLS files.
|
loci.poi.hssf.usermodel |
usermodel package maps HSSF low level strutures to familiar workbook/sheet model
|
Modifier and Type | Method and Description |
---|---|
Sheet |
Sheet.cloneSheet()
Clones the low level records of this sheet and returns the new sheet instance.
|
static Sheet |
Sheet.createSheet()
Creates a sheet with all the usual records minus values and the "index"
record (not required).
|
static Sheet |
Sheet.createSheet(List records,
int sheetnum)
read support (offset = 0) Same as createSheet(Record[] recs, int, int)
only the record offset is assumed to be 0.
|
static Sheet |
Sheet.createSheet(List recs,
int sheetnum,
int offset)
read support (offset used as starting point for search) for low level
API.
|
Modifier and Type | Field and Description |
---|---|
private Sheet |
HSSFCell.sheet |
private Sheet |
HSSFRow.sheet
reference to containing Sheet
|
private Sheet |
HSSFSheet.sheet
reference to the low level Sheet object
|
Modifier and Type | Method and Description |
---|---|
protected Sheet |
HSSFSheet.getSheet()
used internally in the API to get the low level Sheet record represented by this
Object.
|
Modifier and Type | Method and Description |
---|---|
protected static HSSFComment |
HSSFCell.findCellComment(Sheet sheet,
int row,
int column)
Cell comment finder.
|
private void |
HSSFSheet.setPropertiesFromSheet(Sheet sheet)
used internally to set the properties given a Sheet object
|
Constructor and Description |
---|
HSSFCell(Workbook book,
Sheet sheet,
int row,
CellValueRecordInterface cval)
Creates an HSSFCell from a CellValueRecordInterface.
|
HSSFCell(Workbook book,
Sheet sheet,
int row,
short col)
Creates new Cell - Should only be called by HSSFRow.
|
HSSFCell(Workbook book,
Sheet sheet,
int row,
short col,
int type)
Creates new Cell - Should only be called by HSSFRow.
|
HSSFRow(Workbook book,
Sheet sheet,
int rowNum)
Creates new HSSFRow from scratch.
|
HSSFRow(Workbook book,
Sheet sheet,
RowRecord record)
Creates an HSSFRow from a low level RowRecord object.
|
HSSFSheet(HSSFWorkbook workbook,
Sheet sheet)
Creates an HSSFSheet representing the given Sheet object.
|
Copyright © 2016 Open Microscopy Environment