public enum HtmlElementType extends Enum<HtmlElementType>
| Enum Constant and Description |
|---|
COMMENT |
DOCTYPE |
END_TAG |
EOF |
START_TAG |
TEXT |
| Modifier and Type | Method and Description |
|---|---|
static HtmlElementType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HtmlElementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HtmlElementType EOF
public static final HtmlElementType START_TAG
public static final HtmlElementType COMMENT
public static final HtmlElementType END_TAG
public static final HtmlElementType TEXT
public static final HtmlElementType DOCTYPE
public static HtmlElementType[] values()
for (HtmlElementType c : HtmlElementType.values()) System.out.println(c);
public static HtmlElementType 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 © 2007–2019 The Apache Software Foundation. All rights reserved.