public enum HtmlPageOption extends java.lang.Enum<HtmlPageOption>
| Enum Constant and Description |
|---|
MULTIPLE_PAGE
Convert the PDF file into multiple HTML files.
|
MULTIPLE_PAGE_WITH_BOOKMARK
Convert the PDF file into multiple HTML files.
|
SINGLE_PAGE
Convert the entire PDF file into a single HTML file.
|
SINGLE_PAGE_WITH_BOOKMARK
Convert the PDF file into a single HTML file with an outline for navigation at the beginning of the HTML page.
|
| Modifier and Type | Method and Description |
|---|---|
static HtmlPageOption |
fromInt(int value) |
int |
getValue() |
static HtmlPageOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HtmlPageOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HtmlPageOption SINGLE_PAGE
public static final HtmlPageOption SINGLE_PAGE_WITH_BOOKMARK
public static final HtmlPageOption MULTIPLE_PAGE
public static final HtmlPageOption MULTIPLE_PAGE_WITH_BOOKMARK
public static HtmlPageOption[] values()
for (HtmlPageOption c : HtmlPageOption.values()) System.out.println(c);
public static HtmlPageOption valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int getValue()
public static HtmlPageOption fromInt(int value)