public enum LoadFormat extends Enum<LoadFormat>
Specifies load format.
Enum Constant and Description |
---|
APS
means loading document in APS format.
|
CGM
means loading of document in CGM format
|
EPUB
means loading of document in EPUB format(special format of e-books)
|
HTML
means loading of document in HTML format
|
MD
means loading document is in MD format (markdown).
|
MHT
means loading of document in MHT format(that is packed HTML format)
|
PCL
means loading of document in PCL format
|
PDFXML
Internal PDF document structure in XML format.
|
PS
means loading of document in PS format(format of PostScript document)
|
SVG
means loading of document in SVG format - format of Latex text editor
|
TEX
means loading of document in TEX format - format of Latex text editor
|
TXT
means loading document is in TXT format.
|
XML
means loading of document in XML format(special XML that represent logical structure of PDF
document)
|
XPS
means loading of document in XPS format
|
XSLFO
means loading of document in XSLFO format
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static LoadFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoadFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoadFormat CGM
means loading of document in CGM format
public static final LoadFormat HTML
means loading of document in HTML format
public static final LoadFormat EPUB
means loading of document in EPUB format(special format of e-books)
public static final LoadFormat XML
means loading of document in XML format(special XML that represent logical structure of PDF document)
public static final LoadFormat XSLFO
means loading of document in XSLFO format
public static final LoadFormat PCL
means loading of document in PCL format
public static final LoadFormat XPS
means loading of document in XPS format
public static final LoadFormat TEX
means loading of document in TEX format - format of Latex text editor
public static final LoadFormat SVG
means loading of document in SVG format - format of Latex text editor
public static final LoadFormat MHT
means loading of document in MHT format(that is packed HTML format)
public static final LoadFormat PS
means loading of document in PS format(format of PostScript document)
public static final LoadFormat MD
means loading document is in MD format (markdown).
public static final LoadFormat TXT
means loading document is in TXT format.
public static final LoadFormat APS
means loading document in APS format.
public static final LoadFormat PDFXML
Internal PDF document structure in XML format.
public static LoadFormat[] values()
for (LoadFormat c : LoadFormat.values()) System.out.println(c);
public static LoadFormat valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic int getValue()