Enum Constant and Description |
---|
HTML_4_01_FRAMESET |
HTML_4_01_STRICT |
HTML_4_01_TRANSITIONAL |
HTML5 |
XHTML_1_0_FRAMESET |
XHTML_1_0_STRICT |
XHTML_1_0_TRANSITIONAL |
XHTML_1_1 |
Modifier and Type | Method and Description |
---|---|
static DocTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DocTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocTypes HTML5
public static final DocTypes HTML_4_01_TRANSITIONAL
public static final DocTypes HTML_4_01_STRICT
public static final DocTypes HTML_4_01_FRAMESET
public static final DocTypes XHTML_1_0_STRICT
public static final DocTypes XHTML_1_0_TRANSITIONAL
public static final DocTypes XHTML_1_0_FRAMESET
public static final DocTypes XHTML_1_1
public static DocTypes[] values()
for (DocTypes c : DocTypes.values()) System.out.println(c);
public static DocTypes 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 null