use of org.apache.poi.hssf.record.ExtSSTRecord in project poi by apache.
the class InternalWorkbook method createExtendedSST.
/**
* Creates the ExtendedSST record with numstrings per bucket set to 0x8. HSSF
* doesn't yet know what to do with this thing, but we create it with nothing in
* it hardly just to make Excel happy and our sheets look like Excel's
*/
private static ExtSSTRecord createExtendedSST() {
ExtSSTRecord retval = new ExtSSTRecord();
retval.setNumStringsPerBucket((short) 0x8);
return retval;
}
Aggregations