FileDocCategorySizeDatePackage
CustomField.javaAPI DocApache Poi 3.0.12016Mon Jan 01 12:39:40 GMT 2007org.apache.poi.hssf.record

CustomField

public interface CustomField implements Cloneable

Fields Summary
Constructors Summary
Methods Summary
public intfillField(org.apache.poi.hssf.record.RecordInputStream in)
Populates this fields data from the byte array passed in.

param
data raw data
param
size size of data
param
offset of the record's data (provided a big array of the file)
return
the number of bytes read.

public intgetSize()

return
The size of this field in bytes. This operation is not valid until after the call to fillField()

public intserializeField(int offset, byte[] data)
Converts this field to it's byte array form.

param
offset The offset into the byte array to start writing to.
param
data The data array to write to.
return
The number of bytes written.

public voidtoString(java.lang.StringBuffer str)
Appends the string representation of this field to the supplied StringBuffer.

param
str The string buffer to append to.