Package org.apache.poi.hssf.record
Class DSFRecord
- java.lang.Object
-
- org.apache.poi.hssf.record.RecordBase
-
- org.apache.poi.hssf.record.Record
-
- org.apache.poi.hssf.record.StandardRecord
-
- org.apache.poi.hssf.record.DSFRecord
-
public final class DSFRecord extends StandardRecord
Title: Double Stream Flag Record (0x0161)Description: tells if this is a double stream file. (always no for HSSF generated files)
Double Stream files contain both BIFF8 and BIFF7 workbooks.
REFERENCE: PG 305 Microsoft Excel 97 Developer's Kit (ISBN: 1-57231-498-2)
-
-
Field Summary
Fields Modifier and Type Field Description static shortsid
-
Constructor Summary
Constructors Constructor Description DSFRecord(boolean isBiff5BookStreamPresent)DSFRecord(RecordInputStream in)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description shortgetSid()return the non static version of the id for this record.booleanisBiff5BookStreamPresent()voidserialize(LittleEndianOutput out)java.lang.StringtoString()get a string representation of the record (for biffview/debugging)-
Methods inherited from class org.apache.poi.hssf.record.StandardRecord
getRecordSize, serialize
-
Methods inherited from class org.apache.poi.hssf.record.Record
clone, cloneViaReserialise, serialize
-
-
-
-
Field Detail
-
sid
public static final short sid
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
DSFRecord
public DSFRecord(boolean isBiff5BookStreamPresent)
-
DSFRecord
public DSFRecord(RecordInputStream in)
-
-
Method Detail
-
isBiff5BookStreamPresent
public boolean isBiff5BookStreamPresent()
-
toString
public java.lang.String toString()
Description copied from class:Recordget a string representation of the record (for biffview/debugging)
-
serialize
public void serialize(LittleEndianOutput out)
-
-