fist.beans.FISTbeanExport

  SubClasses:

This class contains data exported from beans like the FISTbeanCustomSelect.


Accessors
public int getLength();
  Returns the length (in bytes) of the exported data.
public byte [] getBuffer();
  Returns a single buffer containing the exported data. NB it is likely that the buffer will be created, using extra memory.
public InputStream getInputStream();
  Returns a new Input Stream from which you can read the exported data.
public void writeTo(OutputStream out) throws IOException;
  Sends the exported data to an OutputStream. This method is preferred instead of calling getBuffer, which may use more memory.
public String getFileExtension();
  Returns the recommended file extension (eg. "tif") for the exported data.
public String getMimeType();
  Returns the recommended MIME Type (eg. "Image/tiff") for the exported data.
Resource Usage
public void releaseResources();
  Releases the export's resources (i.e. memory).