Package org.apache.poi.hssf.record
Class SupBookRecord
- 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.SupBookRecord
-
- All Implemented Interfaces:
org.apache.poi.common.Duplicatable,GenericRecord
public final class SupBookRecord extends StandardRecord
A External Workbook Description (Supplemental Book). Its only a dummy record for making new ExternSheet Record
-
-
Field Summary
Fields Modifier and Type Field Description static shortsid
-
Constructor Summary
Constructors Constructor Description SupBookRecord(java.lang.String url, java.lang.String[] sheetNames)SupBookRecord(RecordInputStream in)called by the constructor, should set class level fields.SupBookRecord(SupBookRecord other)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description SupBookRecordcopy()static SupBookRecordcreateAddInFunctions()static SupBookRecordcreateExternalReferences(java.lang.String url, java.lang.String[] sheetNames)static SupBookRecordcreateInternalReferences(short numberOfSheets)java.util.Map<java.lang.String,java.util.function.Supplier<?>>getGenericProperties()HSSFRecordTypesgetGenericRecordType()shortgetNumberOfSheets()java.lang.String[]getSheetNames()shortgetSid()return the non static version of the id for this record.java.lang.StringgetURL()booleanisAddInFunctions()booleanisExternalReferences()booleanisInternalReferences()voidserialize(LittleEndianOutput out)voidsetNumberOfSheets(short number)voidsetURL(java.lang.String pUrl)-
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, 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
-
SupBookRecord
public SupBookRecord(SupBookRecord other)
-
SupBookRecord
public SupBookRecord(java.lang.String url, java.lang.String[] sheetNames)
-
SupBookRecord
public SupBookRecord(RecordInputStream in)
called by the constructor, should set class level fields. Should throw runtime exception for bad/incomplete data.- Parameters:
in- the stream to read from
-
-
Method Detail
-
createInternalReferences
public static SupBookRecord createInternalReferences(short numberOfSheets)
-
createAddInFunctions
public static SupBookRecord createAddInFunctions()
-
createExternalReferences
public static SupBookRecord createExternalReferences(java.lang.String url, java.lang.String[] sheetNames)
-
isExternalReferences
public boolean isExternalReferences()
-
isInternalReferences
public boolean isInternalReferences()
-
isAddInFunctions
public boolean isAddInFunctions()
-
serialize
public void serialize(LittleEndianOutput out)
-
setNumberOfSheets
public void setNumberOfSheets(short number)
-
getNumberOfSheets
public short getNumberOfSheets()
-
getSid
public short getSid()
Description copied from class:Recordreturn the non static version of the id for this record.
-
getURL
public java.lang.String getURL()
-
getSheetNames
public java.lang.String[] getSheetNames()
-
setURL
public void setURL(java.lang.String pUrl)
-
copy
public SupBookRecord copy()
- Specified by:
copyin interfaceorg.apache.poi.common.Duplicatable- Specified by:
copyin classStandardRecord
-
getGenericRecordType
public HSSFRecordTypes getGenericRecordType()
- Specified by:
getGenericRecordTypein interfaceGenericRecord- Specified by:
getGenericRecordTypein classRecord
-
getGenericProperties
public java.util.Map<java.lang.String,java.util.function.Supplier<?>> getGenericProperties()
-
-