public class StringRecord extends Record
Modifier and Type | Field and Description |
---|---|
private int |
field_1_string_length |
private byte |
field_2_unicode_flag |
private String |
field_3_string |
static short |
sid |
Constructor and Description |
---|
StringRecord() |
StringRecord(RecordInputStream in)
Constructs a String record and sets its fields appropriately.
|
Modifier and Type | Method and Description |
---|---|
Object |
clone() |
protected void |
fillFields(RecordInputStream in)
called by the constructor, should set class level fields.
|
int |
getRecordSize()
gives the current serialized size of the record.
|
short |
getSid()
return the non static version of the id for this record.
|
String |
getString() |
private int |
getStringByteLength() |
boolean |
isInValueSection()
DBCELL, ROW, VALUES all say yes
|
boolean |
isUnCompressedUnicode()
is this uncompressed unicode (16bit)? Or just 8-bit compressed?
|
int |
serialize(int offset,
byte[] data)
called by the class that is responsible for writing this sucker.
|
void |
setCompressedFlag(byte unicode_flag)
Sets whether the string is compressed or not
|
void |
setString(String string)
Sets the string represented by this record.
|
String |
toString()
get a string representation of the record (for biffview/debugging)
|
protected void |
validateSid(short id)
Throw a runtime exception in the event of a
record passed with a differing ID.
|
public static final short sid
private int field_1_string_length
private byte field_2_unicode_flag
private String field_3_string
public StringRecord()
public StringRecord(RecordInputStream in)
in
- the RecordInputstream to read the record fromprotected void validateSid(short id)
validateSid
in class Record
id
- alleged id for this recordprotected void fillFields(RecordInputStream in)
Record
fillFields
in class Record
in
- the RecordInputstream to read the record frompublic boolean isInValueSection()
Record
isInValueSection
in class Record
private int getStringByteLength()
public int getRecordSize()
getRecordSize
in class Record
public boolean isUnCompressedUnicode()
public int serialize(int offset, byte[] data)
public short getSid()
public String getString()
public void setCompressedFlag(byte unicode_flag)
unicode_flag
- 1 = uncompressed, 0 = compressedpublic void setString(String string)
public String toString()
Record
Copyright © 2015 Open Microscopy Environment