Format
Contents
[
Hide
]Inheritance: java.lang.Object, java.lang.Enum
public enum Format extends Enum<Format>
Fields
Field | Description |
---|---|
Text | Saves the result in the plain text format. |
Docx | Saves the result as an Office Open XML Word processing ML Document (macro-free). |
Saves the result as a PDF (Adobe Portable Document) Document. | |
Xlsx | Saves the result as an Excel ( 2007 and later) workbook Document. |
Xml | Saves the result as an XML Document. |
Json | Saves the result as an plain text written in JavaScript object notation. |
Html | Saves the document as an HTML file. |
Epub | Saves the document as an EPUB file. |
Rtf | Saves the document as an rtf file. |
Methods
Method | Description |
---|---|
values() | |
valueOf(String name) |
Text
public static final Format Text
Saves the result in the plain text format.
Docx
public static final Format Docx
Saves the result as an Office Open XML Word processing ML Document (macro-free).
public static final Format Pdf
Saves the result as a PDF (Adobe Portable Document) Document.
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.
Json
public static final Format Json
Saves the result as an plain text written in JavaScript object notation.
Html
public static final Format Html
Saves the document as an HTML file.
Epub
public static final Format Epub
Saves the document as an EPUB file.
Rtf
public static final Format Rtf
Saves the document as an rtf file.
values()
public static Format[] values()
Returns: com.aspose.ocr.Format[]
valueOf(String name)
public static Format valueOf(String name)
Parameters:
Parameter | Type | Description |
---|---|---|
name | java.lang.String |
Returns: Format