Class Area

    • Constructor Detail

      • Area

        public Area()
    • Method Detail

      • getAlt

        public java.lang.String getAlt()
        Returns the alt of this area tag.
        Since:
        8.0.3
      • getCoords

        public java.lang.String getCoords()
        Returns the coords of this area tag.
        Since:
        8.0.3
      • getDownload

        public java.lang.String getDownload()
        Returns the download of this area tag.

        Notice that this attribute refers to the corresponding attribute of the HTML5 specification. Hence, it would still be rendered to client-side as a DOM attribute even if the browser doesn’t support it.

        Since:
        8.0.3
      • setDownload

        public void setDownload​(java.lang.String download)
                         throws WrongValueException
        Sets the download of this area tag.

        Notice that this attribute refers to the corresponding attribute of the HTML5 specification. Hence, it would still be rendered to client-side as a DOM attribute even if the browser doesn’t support it.

        Throws:
        WrongValueException
        Since:
        8.0.3
      • getHref

        public java.lang.String getHref()
        Returns the href of this area tag.
        Since:
        8.0.3
      • getMedia

        public java.lang.String getMedia()
        Returns the media of this area tag.

        Notice that this attribute refers to the corresponding attribute of the HTML5 specification. Hence, it would still be rendered to client-side as a DOM attribute even if the browser doesn’t support it.

        Since:
        8.0.3
      • setMedia

        public void setMedia​(java.lang.String media)
                      throws WrongValueException
        Sets the media of this area tag.

        Notice that this attribute refers to the corresponding attribute of the HTML5 specification. Hence, it would still be rendered to client-side as a DOM attribute even if the browser doesn’t support it.

        Throws:
        WrongValueException
        Since:
        8.0.3
      • getRel

        public java.lang.String getRel()
        Returns the rel of this area tag.

        Notice that this attribute refers to the corresponding attribute of the HTML5 specification. Hence, it would still be rendered to client-side as a DOM attribute even if the browser doesn’t support it.

        Since:
        8.0.3
      • setRel

        public void setRel​(java.lang.String rel)
                    throws WrongValueException
        Sets the rel of this area tag.

        Notice that this attribute refers to the corresponding attribute of the HTML5 specification. Hence, it would still be rendered to client-side as a DOM attribute even if the browser doesn’t support it.

        Throws:
        WrongValueException
        Since:
        8.0.3
      • getShape

        public java.lang.String getShape()
        Returns the shape of this area tag.
        Since:
        8.0.3
      • getTarget

        public java.lang.String getTarget()
        Returns the target of this area tag.
        Since:
        8.0.3
      • getPing

        public java.lang.String getPing()
        Returns the ping of this a tag.
        Since:
        10.0.0
      • setPing

        public void setPing​(java.lang.String ping)
                     throws WrongValueException
        Sets the ping of this a tag as a space-separated list of URLs. When the link is followed, the browser will send POST requests with the body PING to the URLs. Typically, it's for tracking.
        Throws:
        WrongValueException
        Since:
        10.0.0
      • getReferrerpolicy

        public java.lang.String getReferrerpolicy()
        Returns the referrerpolicy of this a tag.
        Since:
        10.0.0
      • setReferrerpolicy

        public void setReferrerpolicy​(java.lang.String referrerpolicy)
                               throws WrongValueException
        Sets the referrerpolicy of this a tag.

        How much of the referrer to send when following the link.

        • no-referrer: The Referer header will not be sent.
        • no-referrer-when-downgrade: The Referer header will not be sent to origins without TLS (HTTPS).
        • origin: The sent referrer will be limited to the origin of the referring page: its scheme, host, and port.
        • origin-when-cross-origin: The referrer sent to other origins will be limited to the scheme, the host, and the port. Navigations on the same origin will still include the path.
        • same-origin: A referrer will be sent for same origin, but cross-origin requests will contain no referrer information.
        • strict-origin: Only send the origin of the document as the referrer when the protocol security level stays the same (HTTPS→HTTPS), but don't send it to a less secure destination (HTTPS→HTTP).
        • strict-origin-when-cross-origin (default): Send a full URL when performing a same-origin request, only send the origin when the protocol security level stays the same (HTTPS→HTTPS), and send no header to a less secure destination (HTTPS→HTTP).
        • unsafe-url: The referrer will include the origin and the path (but not the fragment, password, or username). This value is unsafe, because it leaks origins and paths from TLS-protected resources to insecure origins.
        Throws:
        WrongValueException
        Since:
        10.0.0