public final class StringRecord extends ContinuableRecord
Stores the cached result of a text formula
Modifier and Type | Field and Description |
---|---|
static short |
sid |
Constructor and Description |
---|
StringRecord() |
StringRecord(RecordInputStream in) |
StringRecord(StringRecord other) |
Modifier and Type | Method and Description |
---|---|
StringRecord |
copy() |
java.util.Map<java.lang.String,java.util.function.Supplier<?>> |
getGenericProperties() |
HSSFRecordTypes |
getGenericRecordType() |
short |
getSid()
return the non static version of the id for this record.
|
java.lang.String |
getString() |
protected void |
serialize(ContinuableRecordOutput out)
Serializes this record's content to the supplied data output.
|
void |
setString(java.lang.String string)
Sets the string represented by this record.
|
getRecordSize, serialize
cloneViaReserialise, serialize, toString
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
getGenericChildren
public static final short sid
public StringRecord()
public StringRecord(StringRecord other)
public StringRecord(RecordInputStream in)
in
- the RecordInputStream to read the record fromprotected void serialize(ContinuableRecordOutput out)
ContinuableRecord
The standard BIFF header (ushort sid, ushort size) has been handled by the superclass, so
only BIFF data should be written by this method. Simple data types can be written with the
standard LittleEndianOutput
methods. Methods from ContinuableRecordOutput
can be used to serialize strings (with ContinueRecord
s being written as required).
If necessary, implementors can explicitly start ContinueRecord
s (regardless of the
amount of remaining space).
serialize
in class ContinuableRecord
out
- a data output streampublic short getSid()
Record
public java.lang.String getString()
public void setString(java.lang.String string)
string
- The string-value for this recordpublic StringRecord copy()
copy
in interface Duplicatable
copy
in class Record
public HSSFRecordTypes getGenericRecordType()
getGenericRecordType
in interface GenericRecord
getGenericRecordType
in class Record
public java.util.Map<java.lang.String,java.util.function.Supplier<?>> getGenericProperties()
Copyright 2022 The Apache Software Foundation or its licensors, as applicable.