public enum HtmlType extends Enum<HtmlType>
Enum Constant and Description |
---|
HTML
Export entire HTML document.
|
HTML_TABLE
Export HTML table and its content.
|
MHTML
Export entire HTML document and images to MIME HTML (MHTML) format.
|
Modifier and Type | Method and Description |
---|---|
static HtmlType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HtmlType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HtmlType HTML
ExcelFile.save(String)
or ExcelFile.save(String, SaveOptions)
overload is used or if HtmlSaveOptions.getFilesDirectoryPath()
is specified.public static final HtmlType HTML_TABLE
ExcelFile.save(String)
or ExcelFile.save(String, SaveOptions)
overload is used or if HtmlSaveOptions.getFilesDirectoryPath()
is specified.public static final HtmlType MHTML
public static HtmlType 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 static HtmlType[] values()
for (HtmlType c : HtmlType.values()) System.out.println(c);
© GemBox Ltd. — All rights reserved.