Methods Summary |
---|
protected void | fillFields(org.apache.poi.hssf.record.RecordInputStream in)
field_1_stream_pos = in.readInt();
field_2_bucket_sst_offset = in.readShort();
field_3_zero = in.readShort();
|
public short | getBucketSSTOffset()
return field_2_bucket_sst_offset;
|
public int | getRecordSize()
return 8;
|
public short | getSid()
return sid;
|
public int | getStreamPos()
return field_1_stream_pos;
|
public int | serialize(int offset, byte[] data)
LittleEndian.putInt(data, 0 + offset, getStreamPos());
LittleEndian.putShort(data, 4 + offset, getBucketSSTOffset());
LittleEndian.putShort(data, 6 + offset, ( short ) 0);
return getRecordSize();
|
public void | setBucketRecordOffset(short offset)
field_2_bucket_sst_offset = offset;
|
public void | setStreamPos(int pos)
field_1_stream_pos = pos;
|
public java.lang.String | toString()
StringBuffer buffer = new StringBuffer();
buffer.append("[EXTSST]\n");
buffer.append(" .streampos = ")
.append(Integer.toHexString(getStreamPos())).append("\n");
buffer.append(" .bucketsstoffset= ")
.append(Integer.toHexString(getBucketSSTOffset())).append("\n");
buffer.append(" .zero = ")
.append(Integer.toHexString(field_3_zero)).append("\n");
buffer.append("[/EXTSST]\n");
return buffer.toString();
|
protected void | validateSid(short id)
// do nothing
|