Enum EHTMLVersion

    • 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 name
        NullPointerException - 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 null for HTML5 or later.
      • isXHTML10

        public boolean isXHTML10()
      • isXHTML11

        public boolean isXHTML11()
      • isPriorToHTML5

        public boolean isPriorToHTML5()
      • isAtLeastHTML5

        public boolean isAtLeastHTML5()