|
||||||||||
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.UnknownRecord
public class UnknownRecord
Title: Unknown Record (for debugging)
Description: Unknown record just tells you the sid so you can figure out what records you are missing. Also helps us read/modify sheets we don't know all the records to. (HSSF leaves these alone!)
Company: SuperLink Software, Inc.
Constructor Summary | |
---|---|
UnknownRecord()
|
|
UnknownRecord(RecordInputStream in)
construct an unknown record. |
|
UnknownRecord(short id,
byte[] data)
|
Method Summary | |
---|---|
java.lang.Object |
clone()
Unlike the other Record.clone methods this is a shallow clone |
protected void |
fillFields(byte[] data,
short sid)
|
protected void |
fillFields(RecordInputStream in)
called by the constructor, should set class level fields. |
int |
getRecordSize()
gives the current serialized size of the record. |
short |
getSid()
return the non static version of the id for this record. |
int |
serialize(int offset,
byte[] data)
spit the record out AS IS. |
java.lang.String |
toString()
print a sort of string representation ([UNKNOWN RECORD] id = x [/UNKNOWN RECORD]) |
protected void |
validateSid(short id)
NO OP! |
Methods inherited from class org.apache.poi.hssf.record.Record |
---|
cloneViaReserialise, isInValueSection, isValue, serialize |
Methods inherited from class java.lang.Object |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public UnknownRecord()
public UnknownRecord(short id, byte[] data)
id
- id of the record -not validated, just stored for serializationdata
- the datapublic UnknownRecord(RecordInputStream in)
in
- the RecordInputstream to read the record fromMethod Detail |
---|
public int serialize(int offset, byte[] data)
serialize
in class Record
offset
- to begin writing atdata
- byte array containing instance data
public int getRecordSize()
Record
getRecordSize
in class Record
protected void fillFields(byte[] data, short sid)
protected void validateSid(short id)
validateSid
in class Record
id
- alleged id for this recordpublic java.lang.String toString()
toString
in class Record
public short getSid()
Record
getSid
in class Record
protected void fillFields(RecordInputStream in)
fillFields
in class Record
in
- the RecordInputstream to read the record frompublic java.lang.Object clone()
clone
in class Record
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |