public static enum HtmlState.HTML extends Enum<HtmlState.HTML>
Enum Constant and Description |
---|
AFTER_END_TAG_NAME |
ATTR_EQUAL |
ATTR_NAME |
ATTRIBUTES |
BODY |
COMMENT |
CSS |
CSS_CHECK |
DQ_VALUE |
END_TAG |
END_TAG_NAME |
ESCAPE |
NQ_VALUE |
PRAGMA |
SCRIPT |
SCRIPT_CHECK |
SCRIPT_DQ_VALUE |
SCRIPT_SQ_VALUE |
SQ_VALUE |
TAG |
TAG_NAME |
Modifier and Type | Method and Description |
---|---|
static HtmlState.HTML |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HtmlState.HTML[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HtmlState.HTML ATTRIBUTES
public static final HtmlState.HTML BODY
public static final HtmlState.HTML TAG
public static final HtmlState.HTML ATTR_NAME
public static final HtmlState.HTML ATTR_EQUAL
public static final HtmlState.HTML DQ_VALUE
public static final HtmlState.HTML SCRIPT_DQ_VALUE
public static final HtmlState.HTML TAG_NAME
public static final HtmlState.HTML END_TAG
public static final HtmlState.HTML END_TAG_NAME
public static final HtmlState.HTML ESCAPE
public static final HtmlState.HTML SCRIPT
public static final HtmlState.HTML SCRIPT_SQ_VALUE
public static final HtmlState.HTML SCRIPT_CHECK
public static final HtmlState.HTML AFTER_END_TAG_NAME
public static final HtmlState.HTML SQ_VALUE
public static final HtmlState.HTML NQ_VALUE
public static final HtmlState.HTML PRAGMA
public static final HtmlState.HTML COMMENT
public static final HtmlState.HTML CSS
public static final HtmlState.HTML CSS_CHECK
public static HtmlState.HTML[] values()
for (HtmlState.HTML c : HtmlState.HTML.values()) System.out.println(c);
public static HtmlState.HTML 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 © 2015. All rights reserved.