Description: Marks the end of records belonging to a particular object in the HSSF File
REFERENCE: PG 307 Microsoft Excel 97 Developer's Kit (ISBN: 1-57231-498-2)
Constructs a EOFRecord record and sets its fields appropriately.paramid id must be 0x0A or an exception will be throw upon validationparamsize the size of the data area of the recordparamdata data of the record (should not contain sid/len) super(in);
super(in);
EOFRecord rec = new EOFRecord(); return rec;
return 4;
return sid;
LittleEndian.putShort(data, 0 + offset, sid); LittleEndian.putShort(data, 2 + offset, (( short ) 0)); // no record info return getRecordSize();
StringBuffer buffer = new StringBuffer(); buffer.append("[EOF]\n"); buffer.append("[/EOF]\n"); return buffer.toString();
if (id != sid) { throw new RecordFormatException("NOT An EOF RECORD"); }