Uses of Interface
org.apache.poi.hssf.record.CellValueRecordInterface
Packages that use CellValueRecordInterface
Package
Description
HSSF eventmodel Package provides an event-based API for reading HSSF files.
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 org.apache.poi.hssf.eventusermodel
Methods in org.apache.poi.hssf.eventusermodel with parameters of type CellValueRecordInterfaceModifier and TypeMethodDescriptionFormatTrackingHSSFListener.formatNumberDateCell
(CellValueRecordInterface cell) Formats the given numeric of date cells contents as a String, in as close as we can to the way that Excel would do so.int
FormatTrackingHSSFListener.getFormatIndex
(CellValueRecordInterface cell) Returns the index of the format string, used by your cell, or -1 if none foundFormatTrackingHSSFListener.getFormatString
(CellValueRecordInterface cell) Returns the format string, eg $##.##, used by your cell -
Uses of CellValueRecordInterface in org.apache.poi.hssf.model
Methods in org.apache.poi.hssf.model that return types with arguments of type CellValueRecordInterfaceModifier and TypeMethodDescriptionInternalSheet.getCellValueIterator()
Get all the value records (from LOC).Methods in org.apache.poi.hssf.model with parameters of type CellValueRecordInterfaceModifier and TypeMethodDescriptionvoid
InternalSheet.addValueRecord
(int row, CellValueRecordInterface col) Adds a value record to the sheet's contained binary records (i.e.void
InternalSheet.removeValueRecord
(int row, CellValueRecordInterface col) remove a value record from the records array.void
InternalSheet.replaceValueRecord
(CellValueRecordInterface newval) replace a value record from the records array. -
Uses of CellValueRecordInterface in org.apache.poi.hssf.record
Classes in org.apache.poi.hssf.record that implement CellValueRecordInterfaceModifier and TypeClassDescriptionfinal class
Title: Blank cell record (0x0201)final class
Creates new BoolErrRecord.class
Base class for all cell value records (implementors ofCellValueRecordInterface
).final class
Formula Record (0x0006).final class
Label Record (0x0204) - read only support for strings stored directly in the cell...final class
Title: Label SST Recordfinal class
NUMBER (0x0203) Contains a numeric cell value.final class
Title: RK Record (0x027E) -
Uses of CellValueRecordInterface in org.apache.poi.hssf.record.aggregates
Classes in org.apache.poi.hssf.record.aggregates that implement CellValueRecordInterfaceModifier and TypeClassDescriptionfinal class
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 org.apache.poi.hssf.record.aggregates that return types with arguments of type CellValueRecordInterfaceModifier and TypeMethodDescriptionRowRecordsAggregate.getCellValueIterator()
Returns an iterator for the cell valuesValueRecordsAggregate.iterator()
value iteratorMethods in org.apache.poi.hssf.record.aggregates with parameters of type CellValueRecordInterfaceModifier and TypeMethodDescriptionvoid
ValueRecordsAggregate.construct
(CellValueRecordInterface rec, RecordStream rs, SharedValueManager sfh) Processes a single cell value recordvoid
RowRecordsAggregate.insertCell
(CellValueRecordInterface cvRec) void
ValueRecordsAggregate.insertCell
(CellValueRecordInterface cell) void
RowRecordsAggregate.removeCell
(CellValueRecordInterface cvRec) void
ValueRecordsAggregate.removeCell
(CellValueRecordInterface cell) -
Uses of CellValueRecordInterface in org.apache.poi.hssf.usermodel
Methods in org.apache.poi.hssf.usermodel that return CellValueRecordInterfaceModifier and TypeMethodDescriptionprotected CellValueRecordInterface
HSSFCell.getCellValueRecord()
Should only be used by HSSFSheet and friends.Constructors in org.apache.poi.hssf.usermodel with parameters of type CellValueRecordInterfaceModifierConstructorDescriptionprotected
HSSFCell
(HSSFWorkbook book, HSSFSheet sheet, CellValueRecordInterface cval) Creates an HSSFCell from a CellValueRecordInterface.