Package com.helger.html
Enum EHTMLVersion
- java.lang.Object
-
- java.lang.Enum<EHTMLVersion>
-
- com.helger.html.EHTMLVersion
-
- All Implemented Interfaces:
Serializable,Comparable<EHTMLVersion>
public enum EHTMLVersion extends Enum<EHTMLVersion>
Enum of supported HTML versions.- Author:
- Philip Helger
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HTML5HTML51XHTML10_STRICTXHTML10_TRANSITIONALXHTML11
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract com.helger.xml.microdom.IMicroDocumentTypegetDocType()abstract StringgetNamespaceURI()booleanisAtLeastHTML5()booleanisPriorToHTML5()booleanisXHTML10()booleanisXHTML11()static EHTMLVersionvalueOf(String name)Returns the enum constant of this type with the specified name.static EHTMLVersion[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
XHTML10_STRICT
public static final EHTMLVersion XHTML10_STRICT
-
XHTML10_TRANSITIONAL
public static final EHTMLVersion XHTML10_TRANSITIONAL
-
XHTML11
public static final EHTMLVersion XHTML11
-
HTML5
public static final EHTMLVersion HTML5
-
HTML51
public static final EHTMLVersion HTML51
-
-
Method Detail
-
values
public static EHTMLVersion[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EHTMLVersion c : EHTMLVersion.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EHTMLVersion valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getDocType
@Nonnull public abstract com.helger.xml.microdom.IMicroDocumentType getDocType()
- Returns:
- The document type matching this HTML version. Never
null.
-
getNamespaceURI
@Nullable public abstract String getNamespaceURI()
- Returns:
- The XML namespace URI to use. May be
nullfor HTML5 or later.
-
isXHTML10
public boolean isXHTML10()
-
isXHTML11
public boolean isXHTML11()
-
isPriorToHTML5
public boolean isPriorToHTML5()
-
isAtLeastHTML5
public boolean isAtLeastHTML5()
-
-