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
-
public final class SupBookRecord extends StandardRecord
Title: Sup Book - EXTERNALBOOK (0x01AE)Description: A External Workbook Description (Supplemental Book) Its only a dummy record for making new ExternSheet Record
REFERENCE: 5.38
-
-
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.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SupBookRecordcreateAddInFunctions()static SupBookRecordcreateExternalReferences(java.lang.String url, java.lang.String[] sheetNames)static SupBookRecordcreateInternalReferences(short numberOfSheets)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)java.lang.StringtoString()get a string representation of the record (for biffview/debugging)-
Methods inherited from class org.apache.poi.hssf.record.StandardRecord
getRecordSize, serialize
-
Methods inherited from class org.apache.poi.hssf.record.Record
clone, cloneViaReserialise, serialize
-
-
-
-
Field Detail
-
sid
public static final short sid
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
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()
-
toString
public java.lang.String toString()
Description copied from class:Recordget a string representation of the record (for biffview/debugging)
-
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)
-
-