public static enum HtmlProperties.HtmlTag extends java.lang.Enum<HtmlProperties.HtmlTag>
Enum Constant and Description |
---|
ARTICLE |
ASIDE |
DIV |
FOOTER |
HEADER |
MAIN |
NAV |
SECTION |
Modifier and Type | Method and Description |
---|---|
static HtmlProperties.HtmlTag |
create(java.lang.String value) |
java.lang.String |
getValue() |
java.lang.String |
toString() |
static HtmlProperties.HtmlTag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HtmlProperties.HtmlTag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HtmlProperties.HtmlTag ARTICLE
public static final HtmlProperties.HtmlTag ASIDE
public static final HtmlProperties.HtmlTag DIV
public static final HtmlProperties.HtmlTag FOOTER
public static final HtmlProperties.HtmlTag HEADER
public static final HtmlProperties.HtmlTag MAIN
public static final HtmlProperties.HtmlTag NAV
public static final HtmlProperties.HtmlTag SECTION
public static HtmlProperties.HtmlTag[] values()
for (HtmlProperties.HtmlTag c : HtmlProperties.HtmlTag.values()) System.out.println(c);
public static HtmlProperties.HtmlTag 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 static HtmlProperties.HtmlTag create(java.lang.String value)
public java.lang.String getValue()
public java.lang.String toString()
toString
in class java.lang.Enum<HtmlProperties.HtmlTag>