Package org.apache.poi.hssf.record
Class OldLabelRecord
- java.lang.Object
-
- org.apache.poi.hssf.record.OldCellRecord
-
- org.apache.poi.hssf.record.OldLabelRecord
-
public final class OldLabelRecord extends OldCellRecord
Biff2 - Biff 4 Label Record (0x0004 / 0x0204) - read only support for strings stored directly in the cell, from the older file formats that didn't useLabelSSTRecord
-
-
Field Summary
Fields Modifier and Type Field Description static shortbiff2_sidstatic shortbiff345_sid
-
Constructor Summary
Constructors Constructor Description OldLabelRecord(RecordInputStream in)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidappendValueText(java.lang.StringBuilder sb)Append specific debug info (used byOldCellRecord.toString()for the value contained in this record.protected java.lang.StringgetRecordName()Gets the debug info BIFF record type name (used byOldCellRecord.toString().intgetRecordSize()shortgetStringLength()get the number of characters this string containsjava.lang.StringgetValue()Get the String of the cellintserialize(int offset, byte[] data)Not supportedvoidsetCodePage(CodepageRecord codepage)-
Methods inherited from class org.apache.poi.hssf.record.OldCellRecord
getCellAttrs, getColumn, getRow, getSid, getXFIndex, isBiff2, toString
-
-
-
-
Field Detail
-
biff2_sid
public static final short biff2_sid
- See Also:
- Constant Field Values
-
biff345_sid
public static final short biff345_sid
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
OldLabelRecord
public OldLabelRecord(RecordInputStream in)
- Parameters:
in- the RecordInputstream to read the record from
-
-
Method Detail
-
setCodePage
public void setCodePage(CodepageRecord codepage)
-
getStringLength
public short getStringLength()
get the number of characters this string contains- Returns:
- number of characters
-
getValue
public java.lang.String getValue()
Get the String of the cell- Returns:
- the String of the cell
-
serialize
public int serialize(int offset, byte[] data)Not supported- Parameters:
offset- not supporteddata- not supported- Returns:
- not supported
-
getRecordSize
public int getRecordSize()
-
appendValueText
protected void appendValueText(java.lang.StringBuilder sb)
Description copied from class:OldCellRecordAppend specific debug info (used byOldCellRecord.toString()for the value contained in this record. Trailing new-line should not be appended (superclass does that).- Specified by:
appendValueTextin classOldCellRecord- Parameters:
sb- the StringBuilder to append to
-
getRecordName
protected java.lang.String getRecordName()
Description copied from class:OldCellRecordGets the debug info BIFF record type name (used byOldCellRecord.toString().- Specified by:
getRecordNamein classOldCellRecord- Returns:
- the debug info BIFF record type name
-
-