public enum HtmlConverterPhase extends Enum<HtmlConverterPhase>
| Enum Constant and Description |
|---|
COLLECT |
DOCUMENT |
DOCUMENT_BOTTOM |
DOCUMENT_FIRST |
DOCUMENT_TOP |
| Modifier and Type | Method and Description |
|---|---|
static HtmlConverterPhase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HtmlConverterPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HtmlConverterPhase COLLECT
public static final HtmlConverterPhase DOCUMENT_FIRST
public static final HtmlConverterPhase DOCUMENT_TOP
public static final HtmlConverterPhase DOCUMENT
public static final HtmlConverterPhase DOCUMENT_BOTTOM
public static HtmlConverterPhase[] values()
for (HtmlConverterPhase c : HtmlConverterPhase.values()) System.out.println(c);
public static HtmlConverterPhase 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 nullCopyright © 2020. All rights reserved.