Class HtmlMeta

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Cloneable, org.w3c.dom.Element, org.w3c.dom.Node

    public class HtmlMeta
    extends HtmlElement
    Wrapper for the HTML element "meta".
    See Also:
    Serialized Form
    • Field Detail

      • TAG_NAME

        public static final java.lang.String TAG_NAME
        The HTML tag represented by this element.
        See Also:
        Constant Field Values
    • Method Detail

      • mayBeDisplayed

        public boolean mayBeDisplayed()
        Returns true if nodes of this type can ever be displayed, false otherwise. Examples of nodes that can never be displayed are <head>, <meta>, <script>, etc.
        Overrides:
        mayBeDisplayed in class DomNode
        Returns:
        true if nodes of this type can ever be displayed, false otherwise
        See Also:
        DomNode.isDisplayed()
      • getHttpEquivAttribute

        public final java.lang.String getHttpEquivAttribute()
        Returns the value of the attribute http-equiv. Refer to the HTML 4.01 documentation for details on the use of this attribute.
        Returns:
        the value of the attribute http-equiv or an empty string if that attribute isn't defined.
      • getNameAttribute

        public final java.lang.String getNameAttribute()
        Returns the value of the attribute name. Refer to the HTML 4.01 documentation for details on the use of this attribute.
        Returns:
        the value of the attribute name or an empty string if that attribute isn't defined.
      • getContentAttribute

        public final java.lang.String getContentAttribute()
        Returns the value of the attribute content. Refer to the HTML 4.01 documentation for details on the use of this attribute.
        Returns:
        the value of the attribute content or an empty string if that attribute isn't defined.
      • getSchemeAttribute

        public final java.lang.String getSchemeAttribute()
        Returns the value of the attribute scheme. Refer to the HTML 4.01 documentation for details on the use of this attribute.
        Returns:
        the value of the attribute scheme or an empty string if that attribute isn't defined.