Package org.apache.poi.hslf.record
Class TextBytesAtom
- java.lang.Object
-
- org.apache.poi.hslf.record.Record
-
- org.apache.poi.hslf.record.RecordAtom
-
- org.apache.poi.hslf.record.TextBytesAtom
-
public final class TextBytesAtom extends RecordAtom
A TextBytesAtom (type 4008). Holds text in ascii form (unknown code page, for now assumed to be the default of org.apache.poi.util.StringUtil, which is the Excel default). The trailing return character is always stripped from this
-
-
Field Summary
Fields Modifier and Type Field Description static long
_type
-
Constructor Summary
Constructors Constructor Description TextBytesAtom()
Create an empty TextBytes Atom
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getRecordType()
We are of type 4008String
getText()
Grabs the text.void
setText(byte[] b)
Updates the text in the Atom.String
toString()
dump debug info; use getText() to return a string representation of the atomvoid
writeOut(OutputStream out)
Write the contents of the record back, so it can be written to disk-
Methods inherited from class org.apache.poi.hslf.record.RecordAtom
getChildRecords, isAnAtom
-
Methods inherited from class org.apache.poi.hslf.record.Record
buildRecordAtOffset, createRecordForType, findChildRecords, writeLittleEndian, writeLittleEndian
-
-
-
-
Method Detail
-
getText
public String getText()
Grabs the text. Uses the default codepage
-
setText
public void setText(byte[] b)
Updates the text in the Atom. Must be 8 bit ascii
-
getRecordType
public long getRecordType()
We are of type 4008- Specified by:
getRecordType
in classRecord
-
writeOut
public void writeOut(OutputStream out) throws IOException
Write the contents of the record back, so it can be written to disk- Specified by:
writeOut
in classRecord
- Throws:
IOException
-
-