|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.poi.hssf.record.RecordBase
org.apache.poi.hssf.record.Record
org.apache.poi.hssf.record.RecalcIdRecord
public final 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)
|
Method Summary | |
---|---|
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) |
Methods inherited from class org.apache.poi.hssf.record.Record |
---|
clone, cloneViaReserialise, 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)
Method Detail |
---|
public 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)
RecordBase
serialize
in class RecordBase
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 |