|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.poi.hssf.record.Record org.apache.poi.hssf.record.RecalcIdRecord
public class RecalcIdRecord
Title: Recalc Id Record
Description: This record contains an ID that marks when a worksheet was last
recalculated. It's an optimization Excel uses to determine if it
needs to recalculate the spreadsheet when it's opened. So far, only
the two values 0xC1 0x01 0x00 0x00 0x80 0x38 0x01 0x00
(do not recalculate) and 0xC1 0x01 0x00 0x00 0x60 0x69 0x01
0x00
have been seen. If the field isNeeded
is
set to false (default), then this record is swallowed during the
serialization process
REFERENCE: http://chicago.sourceforge.net/devel/docs/excel/biff8.html
Workbook
Field Summary | |
---|---|
short[] |
field_1_recalcids
|
static short |
sid
|
Constructor Summary | |
---|---|
RecalcIdRecord()
|
|
RecalcIdRecord(RecordInputStream in)
Constructs a RECALCID record and sets its fields appropriately. |
Method Summary | |
---|---|
protected void |
fillFields(RecordInputStream in)
called by the constructor, should set class level fields. |
short[] |
getRecalcIdArray()
get the recalc array. |
int |
getRecordSize()
gives the current serialized size of the record. |
short |
getSid()
return the non static version of the id for this record. |
boolean |
isNeeded()
|
int |
serialize(int offset,
byte[] data)
called by the class that is responsible for writing this sucker. |
void |
setIsNeeded(boolean isNeeded)
|
void |
setRecalcIdArray(short[] array)
set the recalc array. |
java.lang.String |
toString()
get a string representation of the record (for biffview/debugging) |
protected void |
validateSid(short id)
called by constructor, should throw runtime exception in the event of a record passed with a differing ID. |
Methods inherited from class org.apache.poi.hssf.record.Record |
---|
clone, cloneViaReserialise, isInValueSection, isValue, serialize |
Methods inherited from class java.lang.Object |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final short sid
public short[] field_1_recalcids
Constructor Detail |
---|
public RecalcIdRecord()
public RecalcIdRecord(RecordInputStream in)
in
- the RecordInputstream to read the record fromMethod Detail |
---|
protected void validateSid(short id)
Record
validateSid
in class Record
id
- alleged id for this recordprotected void fillFields(RecordInputStream in)
Record
fillFields
in class Record
in
- the RecordInputstream to read the record frompublic void setRecalcIdArray(short[] array)
array
- of recalc id'spublic short[] getRecalcIdArray()
public void setIsNeeded(boolean isNeeded)
public boolean isNeeded()
public java.lang.String toString()
Record
toString
in class Record
public int serialize(int offset, byte[] data)
Record
serialize
in class Record
offset
- to begin writing atdata
- byte array containing instance data
public int getRecordSize()
Record
getRecordSize
in class Record
public short getSid()
Record
getSid
in class Record
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |