Class NoteStructureSubRecord

java.lang.Object
org.apache.poi.hssf.record.SubRecord
org.apache.poi.hssf.record.NoteStructureSubRecord
All Implemented Interfaces:
Cloneable

public final class NoteStructureSubRecord extends SubRecord implements Cloneable
ftNts (0x000D)

Represents a NoteStructure sub record.

The docs say nothing about it. The length of this record is always 26 bytes.

  • Field Details

  • Constructor Details

    • NoteStructureSubRecord

      public NoteStructureSubRecord()
      Construct a new NoteStructureSubRecord and fill its data with the default values
    • NoteStructureSubRecord

      public NoteStructureSubRecord(LittleEndianInput in, int size)
      Read the record data from the supplied RecordInputStream
      Parameters:
      in - the input to read from
      size - the provided size - must be 22
  • Method Details

    • toString

      public String toString()
      Convert this record to string. Used by BiffViewer and other utilities.
      Overrides:
      toString in class Object
    • serialize

      public void serialize(LittleEndianOutput out)
      Serialize the record data into the supplied array of bytes
      Specified by:
      serialize in class SubRecord
      Parameters:
      out - the stream to serialize into
    • getDataSize

      protected int getDataSize()
      Specified by:
      getDataSize in class SubRecord
      Returns:
      the size of the data for this record (which is always 4 bytes less than the total record size). Note however, that ushort encoded after the record sid is usually but not always the data size.
    • getSid

      public short getSid()
      Returns:
      id of this record.
    • clone

      public NoteStructureSubRecord clone()
      Specified by:
      clone in class SubRecord