org.apache.poi.hssf.record
public final class: EOFRecord [javadoc |
source]
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.EOFRecord
End Of File record.
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)
- author:
Andrew - C. Oliver (acoliver at apache dot org)
- author:
Jason - Height (jheight at chariot dot net dot au)
- version:
2.0-pre -
| Field Summary |
|---|
| public static final short | sid | |
| public static final int | ENCODED_SIZE | |
| public static final EOFRecord | instance | |
| Methods from java.lang.Object: |
|---|
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from org.apache.poi.hssf.record.EOFRecord Detail: |
public Object clone() {
return instance;
}
|
protected int getDataSize() {
return ENCODED_SIZE - 4;
}
|
public short getSid() {
return sid;
}
|
public void serialize(LittleEndianOutput out) {
}
|
public String toString() {
StringBuffer buffer = new StringBuffer();
buffer.append("[EOF]\n");
buffer.append("[/EOF]\n");
return buffer.toString();
}
|