Index
Object HARMONI.FormatOptions
This class defines the formatting options for a Saffron export.
getFileType()
- Returns the output file type (e.g.
getXML()
- Returns an XML String representation of the format options, if any
setFileType(int)
- Sets the output file type
toString()
- Creates display string for format options.
getFileType
int getFileType()
Returns the output file type (e.g. FileType.PDF)
- Returns:
- the output file type (e.g. FileType.PDF)
setFileType
void setFileType(int fileType)
Sets the output file type
- Parameters:
fileType - the output file type (e.g. FileType.PDF)
getXML
byte[] getXML()
Returns an XML String representation of the format options, if any
- Returns:
- an XML String representation of the format options, if any
toString
String toString()
Creates display string for format options. Must be overridden in subclasses.
- Returns:
- display string for format options. Must be overridden in subclasses.
Index