Uses of Interface
loci.poi.hssf.record.CellValueRecordInterface
Packages that use CellValueRecordInterface
Package
Description
Provides low level API structures for reading, writing, modifying XLS files.
Record package contains class representations for XLS binary strutures.
record aggregates are not real "records" but collections of records that act as a single record.
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 CellValueRecordInterfaceModifier and TypeMethodDescriptionSheet.getNextValueRecord()get the NEXT value record (from LOC).Methods in loci.poi.hssf.model with parameters of type CellValueRecordInterfaceModifier and TypeMethodDescriptionvoidSheet.addValueRecord(int row, CellValueRecordInterface col) Adds a value record to the sheet's contained binary records (i.e.voidSheet.removeValueRecord(int row, CellValueRecordInterface col) remove a value record from the records array.voidSheet.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 CellValueRecordInterfaceModifier and TypeClassDescriptionclassTitle: Blank cell recordclassCreates new BoolErrRecord.classFormula Record.classLabel Record - read only support for strings stored directly in the cell..classTitle: Label SST RecordclassContains a numeric cell value.classTitle: 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 CellValueRecordInterfaceModifier and TypeMethodDescriptionbooleanBlankRecord.isAfter(CellValueRecordInterface i) booleanBoolErrRecord.isAfter(CellValueRecordInterface i) booleanCellValueRecordInterface.isAfter(CellValueRecordInterface i) returns whether this cell is after the passed in cellbooleanFormulaRecord.isAfter(CellValueRecordInterface i) booleanLabelRecord.isAfter(CellValueRecordInterface i) booleanLabelSSTRecord.isAfter(CellValueRecordInterface i) booleanNumberRecord.isAfter(CellValueRecordInterface i) booleanRKRecord.isAfter(CellValueRecordInterface i) booleanBlankRecord.isBefore(CellValueRecordInterface i) booleanBoolErrRecord.isBefore(CellValueRecordInterface i) booleanCellValueRecordInterface.isBefore(CellValueRecordInterface i) returns whether this cell is before the passed in cellbooleanFormulaRecord.isBefore(CellValueRecordInterface i) booleanLabelRecord.isBefore(CellValueRecordInterface i) booleanLabelSSTRecord.isBefore(CellValueRecordInterface i) booleanNumberRecord.isBefore(CellValueRecordInterface i) booleanRKRecord.isBefore(CellValueRecordInterface i) booleanBlankRecord.isEqual(CellValueRecordInterface i) booleanBoolErrRecord.isEqual(CellValueRecordInterface i) booleanCellValueRecordInterface.isEqual(CellValueRecordInterface i) returns whether this cell represents the same cell (NOT VALUE)booleanFormulaRecord.isEqual(CellValueRecordInterface i) booleanLabelRecord.isEqual(CellValueRecordInterface i) booleanLabelSSTRecord.isEqual(CellValueRecordInterface i) booleanNumberRecord.isEqual(CellValueRecordInterface i) booleanRKRecord.isEqual(CellValueRecordInterface i) -
Uses of CellValueRecordInterface in loci.poi.hssf.record.aggregates
Classes in loci.poi.hssf.record.aggregates that implement CellValueRecordInterfaceModifier and TypeClassDescriptionclassThe 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 CellValueRecordInterfaceModifier and TypeMethodDescriptionvoidValueRecordsAggregate.insertCell(CellValueRecordInterface cell) booleanFormulaRecordAggregate.isAfter(CellValueRecordInterface i) booleanFormulaRecordAggregate.isBefore(CellValueRecordInterface i) booleanFormulaRecordAggregate.isEqual(CellValueRecordInterface i) voidValueRecordsAggregate.removeCell(CellValueRecordInterface cell) -
Uses of CellValueRecordInterface in loci.poi.hssf.usermodel
Methods in loci.poi.hssf.usermodel that return CellValueRecordInterfaceModifier and TypeMethodDescriptionprotected CellValueRecordInterfaceHSSFCell.getCellValueRecord()Should only be used by HSSFSheet and friends.Methods in loci.poi.hssf.usermodel with parameters of type CellValueRecordInterfaceModifier and TypeMethodDescriptionprotected HSSFCellHSSFRow.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 CellValueRecordInterfaceModifierConstructorDescriptionprotectedHSSFCell(Workbook book, Sheet sheet, int row, CellValueRecordInterface cval) Creates an HSSFCell from a CellValueRecordInterface.