Package loci.poi.hssf.record
Class ContinueRecord
- java.lang.Object
-
- loci.poi.hssf.record.Record
-
- loci.poi.hssf.record.ContinueRecord
-
public class ContinueRecord extends Record
Title: Continue Record - Helper class used primarily for SST RecordsDescription: handles overflow for prior record in the input stream; content is tailored to that prior record
- Version:
- 2.0-pre
- Author:
- Marc Johnson (mjohnson at apache dot org), Andrew C. Oliver (acoliver at apache dot org), Csaba Nagy (ncsaba at yahoo dot com)
-
-
Field Summary
Fields Modifier and Type Field Description static short
sid
-
Constructor Summary
Constructors Constructor Description ContinueRecord()
default constructorContinueRecord(RecordInputStream in)
Main constructor -- kinda dummy because we don't validate or fill fields
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
clone()
Clone this record.protected void
fillFields(RecordInputStream in)
Fill the fields.byte[]
getData()
get the data for continuationshort
getSid()
return the non static version of the id for this record.byte[]
serialize()
USE ONLY within "processContinue"int
serialize(int offset, byte[] data)
called by the class that is responsible for writing this sucker.void
setData(byte[] data)
String
toString()
Debugging toStringprotected void
validateSid(short id)
Make sure we have a good id-
Methods inherited from class loci.poi.hssf.record.Record
getRecordSize, isInValueSection, isValue
-
-
-
-
Field Detail
-
sid
public static final short sid
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ContinueRecord
public ContinueRecord()
default constructor
-
ContinueRecord
public ContinueRecord(RecordInputStream in)
Main constructor -- kinda dummy because we don't validate or fill fields- Parameters:
in
- the RecordInputstream to read the record from
-
-
Method Detail
-
serialize
public byte[] serialize()
USE ONLY within "processContinue"
-
serialize
public int serialize(int offset, byte[] data)
Description copied from class:Record
called by the class that is responsible for writing this sucker. Subclasses should implement this so that their data is passed back in a byte array.
-
setData
public void setData(byte[] data)
-
getData
public byte[] getData()
get the data for continuation- Returns:
- byte array containing all of the continued data
-
validateSid
protected void validateSid(short id)
Make sure we have a good id- Specified by:
validateSid
in classRecord
- Parameters:
id
- the alleged id
-
toString
public String toString()
Debugging toString
-
getSid
public short getSid()
Description copied from class:Record
return the non static version of the id for this record.
-
fillFields
protected void fillFields(RecordInputStream in)
Fill the fields. Only thing is, this record has no fields --- Specified by:
fillFields
in classRecord
- Parameters:
in
- the RecordInputstream to read the record from
-
-