Format

Inheritance: java.lang.Object, java.lang.Enum

public enum Format extends Enum<Format>

Fields

FieldDescription
DocxSaves the result as an Office Open XML Word processing ML Document (macro-free).
EpubSaves the document as an EPUB file.
HtmlSaves the document as an HTML file.
JsonSaves the result as an plain text written in JavaScript object notation.
PdfSaves the result as a PDF (Adobe Portable Document) Document.
PdfNoImgSaves the document as a Searchable PDF (Adobe Portable Document) Document without image.
RtfSaves the document as an rtf file.
TextSaves the result in the plain text format.
XlsxSaves the result as an Excel ( 2007 and later) workbook Document.
XmlSaves the result as an XML Document.

Docx

public static final Format Docx

Saves the result as an Office Open XML Word processing ML Document (macro-free).

Epub

public static final Format Epub

Saves the document as an EPUB file.

Html

public static final Format Html

Saves the document as an HTML file.

Json

public static final Format Json

Saves the result as an plain text written in JavaScript object notation.

Pdf

public static final Format Pdf

Saves the result as a PDF (Adobe Portable Document) Document.

PdfNoImg

public static final Format PdfNoImg

Saves the document as a Searchable PDF (Adobe Portable Document) Document without image.

Rtf

public static final Format Rtf

Saves the document as an rtf file.

Text

public static final Format Text

Saves the result in the plain text format.

Xlsx

public static final Format Xlsx

Saves the result as an Excel ( 2007 and later) workbook Document.

Xml

public static final Format Xml

Saves the result as an XML Document.