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 protected static charCH_ALT_STARTUP_DIRprotected static charCH_DOWN_DIRprotected static charCH_LIB_DIRprotected static charCH_LONG_VOLUMEprotected static charCH_SAME_VOLUMEprotected static charCH_STARTUP_DIRprotected static charCH_UP_DIRprotected static charCH_VOLUMEprotected static java.lang.StringPATH_SEPERATORstatic 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)protected intgetDataSize()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)Write the data content of this BIFF record.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
-
CH_VOLUME
protected static final char CH_VOLUME
- See Also:
- Constant Field Values
-
CH_SAME_VOLUME
protected static final char CH_SAME_VOLUME
- See Also:
- Constant Field Values
-
CH_DOWN_DIR
protected static final char CH_DOWN_DIR
- See Also:
- Constant Field Values
-
CH_UP_DIR
protected static final char CH_UP_DIR
- See Also:
- Constant Field Values
-
CH_LONG_VOLUME
protected static final char CH_LONG_VOLUME
- See Also:
- Constant Field Values
-
CH_STARTUP_DIR
protected static final char CH_STARTUP_DIR
- See Also:
- Constant Field Values
-
CH_ALT_STARTUP_DIR
protected static final char CH_ALT_STARTUP_DIR
- See Also:
- Constant Field Values
-
CH_LIB_DIR
protected static final char CH_LIB_DIR
- See Also:
- Constant Field Values
-
PATH_SEPERATOR
protected static final java.lang.String PATH_SEPERATOR
-
-
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)
-
getDataSize
protected int getDataSize()
- Specified by:
getDataSizein classStandardRecord
-
serialize
public void serialize(LittleEndianOutput out)
Description copied from class:StandardRecordWrite 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:
serializein classStandardRecord- Parameters:
out- the output object
-
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)
-
-