Uses of Interface
loci.poi.hssf.record.CellValueRecordInterface
-
Packages that use CellValueRecordInterface Package Description loci.poi.hssf.model Provides low level API structures for reading, writing, modifying XLS files.loci.poi.hssf.record Record package contains class representations for XLS binary strutures.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 CellValueRecordInterface in loci.poi.hssf.model
Methods in loci.poi.hssf.model that return CellValueRecordInterface Modifier and Type Method Description CellValueRecordInterface
Sheet. getNextValueRecord()
get the NEXT value record (from LOC).Methods in loci.poi.hssf.model with parameters of type CellValueRecordInterface Modifier and Type Method Description void
Sheet. addValueRecord(int row, CellValueRecordInterface col)
Adds a value record to the sheet's contained binary records (i.e.void
Sheet. removeValueRecord(int row, CellValueRecordInterface col)
remove a value record from the records array.void
Sheet. replaceValueRecord(CellValueRecordInterface newval)
replace a value record from the records array. -
Uses of CellValueRecordInterface in loci.poi.hssf.record
Classes in loci.poi.hssf.record that implement CellValueRecordInterface Modifier and Type Class Description class
BlankRecord
Title: Blank cell recordclass
BoolErrRecord
Creates new BoolErrRecord.class
FormulaRecord
Formula Record.class
LabelRecord
Label Record - read only support for strings stored directly in the cell..class
LabelSSTRecord
Title: Label SST Recordclass
NumberRecord
Contains a numeric cell value.class
RKRecord
Title: RK Record Description: An internal 32 bit number with the two most significant bits storing the type.Methods in loci.poi.hssf.record with parameters of type CellValueRecordInterface Modifier and Type Method Description boolean
BlankRecord. isAfter(CellValueRecordInterface i)
boolean
BoolErrRecord. isAfter(CellValueRecordInterface i)
boolean
CellValueRecordInterface. isAfter(CellValueRecordInterface i)
returns whether this cell is after the passed in cellboolean
FormulaRecord. isAfter(CellValueRecordInterface i)
boolean
LabelRecord. isAfter(CellValueRecordInterface i)
boolean
LabelSSTRecord. isAfter(CellValueRecordInterface i)
boolean
NumberRecord. isAfter(CellValueRecordInterface i)
boolean
RKRecord. isAfter(CellValueRecordInterface i)
boolean
BlankRecord. isBefore(CellValueRecordInterface i)
boolean
BoolErrRecord. isBefore(CellValueRecordInterface i)
boolean
CellValueRecordInterface. isBefore(CellValueRecordInterface i)
returns whether this cell is before the passed in cellboolean
FormulaRecord. isBefore(CellValueRecordInterface i)
boolean
LabelRecord. isBefore(CellValueRecordInterface i)
boolean
LabelSSTRecord. isBefore(CellValueRecordInterface i)
boolean
NumberRecord. isBefore(CellValueRecordInterface i)
boolean
RKRecord. isBefore(CellValueRecordInterface i)
boolean
BlankRecord. isEqual(CellValueRecordInterface i)
boolean
BoolErrRecord. isEqual(CellValueRecordInterface i)
boolean
CellValueRecordInterface. isEqual(CellValueRecordInterface i)
returns whether this cell represents the same cell (NOT VALUE)boolean
FormulaRecord. isEqual(CellValueRecordInterface i)
boolean
LabelRecord. isEqual(CellValueRecordInterface i)
boolean
LabelSSTRecord. isEqual(CellValueRecordInterface i)
boolean
NumberRecord. isEqual(CellValueRecordInterface i)
boolean
RKRecord. isEqual(CellValueRecordInterface i)
-
Uses of CellValueRecordInterface in loci.poi.hssf.record.aggregates
Classes in loci.poi.hssf.record.aggregates that implement CellValueRecordInterface Modifier and Type Class Description class
FormulaRecordAggregate
The formula record aggregate is used to join together the formula record and it's (optional) string record and (optional) Shared Formula Record (template reads, excel optimization).Methods in loci.poi.hssf.record.aggregates with parameters of type CellValueRecordInterface Modifier and Type Method Description void
ValueRecordsAggregate. insertCell(CellValueRecordInterface cell)
boolean
FormulaRecordAggregate. isAfter(CellValueRecordInterface i)
boolean
FormulaRecordAggregate. isBefore(CellValueRecordInterface i)
boolean
FormulaRecordAggregate. isEqual(CellValueRecordInterface i)
void
ValueRecordsAggregate. removeCell(CellValueRecordInterface cell)
-
Uses of CellValueRecordInterface in loci.poi.hssf.usermodel
Methods in loci.poi.hssf.usermodel that return CellValueRecordInterface Modifier and Type Method Description protected CellValueRecordInterface
HSSFCell. getCellValueRecord()
Should only be used by HSSFSheet and friends.Methods in loci.poi.hssf.usermodel with parameters of type CellValueRecordInterface Modifier and Type Method Description protected HSSFCell
HSSFRow. createCellFromRecord(CellValueRecordInterface cell)
create a high level HSSFCell object from an existing low level record.Constructors in loci.poi.hssf.usermodel with parameters of type CellValueRecordInterface Constructor Description HSSFCell(Workbook book, Sheet sheet, int row, CellValueRecordInterface cval)
Creates an HSSFCell from a CellValueRecordInterface.
-