Package | Description |
---|---|
org.apache.poi.hssf.model |
Provides low level API structures for reading, writing, modifying XLS files.
|
org.apache.poi.hssf.record |
Record package contains class representations for XLS binary strutures.
|
org.apache.poi.hssf.record.aggregates |
The record aggregates are not real "records" but collections of records that act as a single record.
|
org.apache.poi.hssf.usermodel |
The usermodel package maps HSSF low level structures to familiar workbook/sheet model
|
Modifier and Type | Method and Description |
---|---|
RowRecord |
InternalSheet.getNextRow()
get the NEXT RowRecord (from LOC).
|
RowRecord |
InternalSheet.getRow(int rownum)
get the NEXT (from LOC) RowRecord where rownumber matches the given rownum.
|
Modifier and Type | Method and Description |
---|---|
void |
InternalSheet.addRow(RowRecord row)
Adds a row record to the sheet
|
void |
InternalSheet.removeRow(RowRecord row)
Removes a row record
This method is not loc sensitive, it resets loc to = dimsloc so no worries.
|
Modifier and Type | Method and Description |
---|---|
RowRecord |
RowRecord.copy() |
Constructor and Description |
---|
RowRecord(RowRecord other) |
Modifier and Type | Method and Description |
---|---|
static RowRecord |
RowRecordsAggregate.createRow(int rowNumber)
Create a row record.
|
RowRecord |
RowRecordsAggregate.getRow(int rowIndex) |
Modifier and Type | Method and Description |
---|---|
java.util.Iterator<RowRecord> |
RowRecordsAggregate.getIterator() |
java.util.Spliterator<RowRecord> |
RowRecordsAggregate.getSpliterator() |
Modifier and Type | Method and Description |
---|---|
void |
RowRecordsAggregate.insertRow(RowRecord row) |
void |
RowRecordsAggregate.removeRow(RowRecord row) |
Modifier and Type | Method and Description |
---|---|
protected RowRecord |
HSSFRow.getRowRecord()
get the lowlevel RowRecord represented by this object - should only be called
by other parts of the high level API
|
Copyright 2022 The Apache Software Foundation or its licensors, as applicable.