Package loci.poi.hssf.record
Interface CustomField
- All Superinterfaces:
Cloneable
- All Known Implementing Classes:
LinkedDataFormulaField
-
Method Summary
Modifier and TypeMethodDescriptionintPopulates this fields data from the byte array passed in.intgetSize()intserializeField(int offset, byte[] data) Converts this field to it's byte array form.voidtoString(StringBuffer str) Appends the string representation of this field to the supplied StringBuffer.
-
Method Details
-
getSize
int getSize()- Returns:
- The size of this field in bytes. This operation is not valid
until after the call to
fillField()
-
fillField
Populates this fields data from the byte array passed in.- Parameters:
in- the RecordInputstream to read the record from
-
toString
Appends the string representation of this field to the supplied StringBuffer.- Parameters:
str- The string buffer to append to.
-
serializeField
int serializeField(int offset, byte[] data) Converts this field to it's byte array form.- Parameters:
offset- The offset into the byte array to start writing to.data- The data array to write to.- Returns:
- The number of bytes written.
-