Package org.apache.poi.hssf.record
Class BookExtRecord
- 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.BookExtRecord
-
- All Implemented Interfaces:
Duplicatable
,GenericRecord
public class BookExtRecord extends StandardRecord
[MS-XLS].pdf 2.4.23 BookExt page 203 properties of a workbook file- Author:
- henrichen@zkoss.org
-
-
Field Summary
Fields Modifier and Type Field Description static short
sid
-
Constructor Summary
Constructors Constructor Description BookExtRecord()
BookExtRecord(RecordInputStream in)
-
Method Summary
-
Methods inherited from class org.apache.poi.hssf.record.StandardRecord
getRecordSize, serialize
-
Methods inherited from class org.apache.poi.hssf.record.Record
cloneViaReserialise, serialize, toString
-
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.poi.common.usermodel.GenericRecord
getGenericChildren
-
-
-
-
Field Detail
-
sid
public static final short sid
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
BookExtRecord
public BookExtRecord()
-
BookExtRecord
public BookExtRecord(RecordInputStream in)
-
-
Method Detail
-
getSid
public short getSid()
Description copied from class:Record
return the non static version of the id for this record.
-
getGenericRecordType
public HSSFRecordTypes getGenericRecordType()
- Specified by:
getGenericRecordType
in interfaceGenericRecord
- Specified by:
getGenericRecordType
in classRecord
-
isDontAutoRecover
public boolean isDontAutoRecover()
-
setDontAutoRecover
public void setDontAutoRecover(boolean flag)
-
isHidePivotList
public boolean isHidePivotList()
-
setHidePivotList
public void setHidePivotList(boolean flag)
-
isFilterPrivacy
public boolean isFilterPrivacy()
-
setFilterPrivacy
public void setFilterPrivacy(boolean flag)
-
isEmbedFactoids
public boolean isEmbedFactoids()
-
setEmbedFactoids
public void setEmbedFactoids(boolean flag)
-
getFactoidDisplay
public int getFactoidDisplay()
-
setFactoidDisplay
public void setFactoidDisplay(int value)
-
isSavedDuringRecovery
public boolean isSavedDuringRecovery()
-
setSavedDuringRecovery
public void setSavedDuringRecovery(boolean flag)
-
isCreatedViaDataRecovery
public boolean isCreatedViaDataRecovery()
-
setCreatedViaDataRecovery
public void setCreatedViaDataRecovery(boolean flag)
-
isOpenedViaDataRecovery
public boolean isOpenedViaDataRecovery()
-
setOpenedViaDataRecovery
public void setOpenedViaDataRecovery(boolean flag)
-
isOpenedViaSafeLoad
public boolean isOpenedViaSafeLoad()
-
setOpenedViaSafeLoad
public void setOpenedViaSafeLoad(boolean flag)
-
isBuggedUserAboutSolution
public boolean isBuggedUserAboutSolution()
-
setBuggedUserAboutSolution
public void setBuggedUserAboutSolution(boolean flag)
-
isShowInkAnnotation
public boolean isShowInkAnnotation()
-
setShowInkAnnotation
public void setShowInkAnnotation(boolean flag)
-
isPublishOnlySelectedBookItems
public boolean isPublishOnlySelectedBookItems()
-
setPublishOnlySelectedBookItems
public void setPublishOnlySelectedBookItems(boolean flag)
-
isShowPivotChartFilter
public boolean isShowPivotChartFilter()
-
setShowPivotChartFilter
public void setShowPivotChartFilter(boolean flag)
-
serialize
public void serialize(LittleEndianOutput out)
Description copied from class:StandardRecord
Write the data content of this BIFF record. The 'ushort sid' and 'ushort size' header fields have already been written by the superclass.The number of bytes written must equal the record size reported by
RecordBase.getRecordSize()
} minus four ( record header consisting of a 'ushort sid' and 'ushort reclength' has already been written by their superclass).- Specified by:
serialize
in classStandardRecord
- Parameters:
out
- the output object
-
copy
public BookExtRecord copy()
- Specified by:
copy
in interfaceDuplicatable
- Specified by:
copy
in classStandardRecord
- Returns:
- a deep copy of the implementing class / instance
-
getDataSize
protected int getDataSize()
- Specified by:
getDataSize
in classStandardRecord
-
-