Package org.apache.poi.hssf.record
Class NoteStructureSubRecord
- java.lang.Object
-
- org.apache.poi.hssf.record.SubRecord
-
- org.apache.poi.hssf.record.NoteStructureSubRecord
-
- All Implemented Interfaces:
java.lang.Cloneable
public final class NoteStructureSubRecord extends SubRecord implements java.lang.Cloneable
ftNts (0x000D)Represents a NoteStructure sub record.
The docs say nothing about it. The length of this record is always 26 bytes.
-
-
Field Summary
Fields Modifier and Type Field Description static shortsid
-
Constructor Summary
Constructors Constructor Description NoteStructureSubRecord()Construct a newNoteStructureSubRecordand fill its data with the default valuesNoteStructureSubRecord(LittleEndianInput in, int size)Read the record data from the suppliedRecordInputStream
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description NoteStructureSubRecordclone()shortgetSid()voidserialize(LittleEndianOutput out)Serialize the record data into the supplied array of bytesjava.lang.StringtoString()Convert this record to string.-
Methods inherited from class org.apache.poi.hssf.record.SubRecord
createSubRecord, isTerminating, serialize
-
-
-
-
Field Detail
-
sid
public static final short sid
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
NoteStructureSubRecord
public NoteStructureSubRecord()
Construct a newNoteStructureSubRecordand fill its data with the default values
-
NoteStructureSubRecord
public NoteStructureSubRecord(LittleEndianInput in, int size)
Read the record data from the suppliedRecordInputStream- Parameters:
in- the input to read fromsize- the provided size - must be 22
-
-
Method Detail
-
toString
public java.lang.String toString()
Convert this record to string. Used by BiffViewer and other utilities.- Overrides:
toStringin classjava.lang.Object
-
serialize
public void serialize(LittleEndianOutput out)
Serialize the record data into the supplied array of bytes
-
getSid
public short getSid()
- Returns:
- id of this record.
-
clone
public NoteStructureSubRecord clone()
-
-