public final class FormatRecord extends StandardRecord implements java.lang.Cloneable
Description: describes a number format -- those goofy strings like $(#,###)
REFERENCE: PG 317 Microsoft Excel 97 Developer's Kit (ISBN: 1-57231-498-2)
| Modifier and Type | Field and Description |
|---|---|
static short |
sid |
| Constructor and Description |
|---|
FormatRecord(int indexCode,
java.lang.String fs) |
FormatRecord(RecordInputStream in) |
| Modifier and Type | Method and Description |
|---|---|
FormatRecord |
clone() |
protected int |
getDataSize() |
java.lang.String |
getFormatString()
get the format string
|
int |
getIndexCode()
get the format index code (for built in formats)
|
short |
getSid()
return the non static version of the id for this record.
|
void |
serialize(LittleEndianOutput out)
Write the data content of this BIFF record.
|
java.lang.String |
toString()
get a string representation of the record (for biffview/debugging)
|
getRecordSize, serializecloneViaReserialise, serializepublic static final short sid
public FormatRecord(int indexCode,
java.lang.String fs)
public FormatRecord(RecordInputStream in)
public int getIndexCode()
InternalWorkbookpublic java.lang.String getFormatString()
public java.lang.String toString()
Recordpublic void serialize(LittleEndianOutput out)
StandardRecord
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).
serialize in class StandardRecordout - the output objectprotected int getDataSize()
getDataSize in class StandardRecordpublic short getSid()
Recordpublic FormatRecord clone()
Copyright 2018 The Apache Software Foundation or its licensors, as applicable.