Uses of Class
loci.poi.hssf.record.RowRecord
-
Packages that use RowRecord Package Description loci.poi.hssf.model Provides low level API structures for reading, writing, modifying XLS files.loci.poi.hssf.record.aggregates record aggregates are not real "records" but collections of records that act as a single record.loci.poi.hssf.usermodel usermodel package maps HSSF low level strutures to familiar workbook/sheet model -
-
Uses of RowRecord in loci.poi.hssf.model
Methods in loci.poi.hssf.model that return RowRecord Modifier and Type Method Description RowRecord
Sheet. createRow(int row)
Create a row record.RowRecord
Sheet. getNextRow()
get the NEXT RowRecord (from LOC).RowRecord
Sheet. getRow(int rownum)
get the NEXT (from LOC) RowRecord where rownumber matches the given rownum.Methods in loci.poi.hssf.model with parameters of type RowRecord Modifier and Type Method Description void
Sheet. addRow(RowRecord row)
Adds a row record to the sheetvoid
Sheet. removeRow(RowRecord row)
Removes a row record This method is not loc sensitive, it resets loc to = dimsloc so no worries. -
Uses of RowRecord in loci.poi.hssf.record.aggregates
Methods in loci.poi.hssf.record.aggregates that return RowRecord Modifier and Type Method Description static RowRecord
RowRecordsAggregate. createRow(int row)
Create a row record.RowRecord
RowRecordsAggregate. getRow(int rownum)
Methods in loci.poi.hssf.record.aggregates with parameters of type RowRecord Modifier and Type Method Description void
RowRecordsAggregate. insertRow(RowRecord row)
void
RowRecordsAggregate. removeRow(RowRecord row)
int
RowRecordsAggregate. writeHidden(RowRecord rowRecord, int row, boolean hidden)
-
Uses of RowRecord in loci.poi.hssf.usermodel
Methods in loci.poi.hssf.usermodel that return RowRecord Modifier and Type Method Description protected RowRecord
HSSFRow. getRowRecord()
get the lowlevel RowRecord represented by this object - should only be called by other parts of the high level APIConstructors in loci.poi.hssf.usermodel with parameters of type RowRecord Constructor Description HSSFRow(Workbook book, Sheet sheet, RowRecord record)
Creates an HSSFRow from a low level RowRecord object.
-