Class Video

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Cloneable, org.jdom2.NamespaceAware, org.jdom2.Parent

    @ProviderType
    public final class Video
    extends AbstractNonSelfClosingHtmlElement
    Html video (video) element.
    See Also:
    Serialized Form
    • Constructor Detail

      • Video

        public Video()
        Initializes html element.
    • Method Detail

      • isAutoPlay

        public boolean isAutoPlay()
        Html "autoplay" attribute.
        Returns:
        Value of attribute
      • setAutoPlay

        public Video setAutoPlay​(boolean value)
        Html "autoplay" attribute.
        Parameters:
        value - Value of attribute
        Returns:
        Self reference
      • isControls

        public boolean isControls()
        Html "controls" attribute.
        Returns:
        Value of attribute
      • setControls

        public Video setControls​(boolean value)
        Html "controls" attribute.
        Parameters:
        value - Value of attribute
        Returns:
        Self reference
      • isLoop

        public boolean isLoop()
        Html "loop" attribute.
        Returns:
        Value of attribute
      • setLoop

        public Video setLoop​(boolean value)
        Html "loop" attribute.
        Parameters:
        value - Value of attribute
        Returns:
        Self reference
      • isMuted

        public boolean isMuted()
        Html "muted" attribute.
        Returns:
        Value of attribute
      • setMuted

        public Video setMuted​(boolean value)
        Html "muted" attribute.
        Parameters:
        value - Value of attribute
        Returns:
        Self reference
      • getPoster

        public java.lang.String getPoster()
        Html "poster" attribute.
        Returns:
        Value of attribute
      • setPoster

        public Video setPoster​(java.lang.String value)
        Html "poster" attribute.
        Parameters:
        value - Value of attribute
        Returns:
        Self reference
      • getPreload

        public java.lang.String getPreload()
        Html "preload" attribute.
        Returns:
        Value of attribute
      • setPreload

        public Video setPreload​(java.lang.String value)
        Html "preload" attribute.
        Parameters:
        value - Value of attribute
        Returns:
        Self reference
      • getSrc

        public java.lang.String getSrc()
        Html "src" attribute.
        Returns:
        Value of attribute
      • setSrc

        public Video setSrc​(java.lang.String value)
        Html "src" attribute.
        Parameters:
        value - Value of attribute
        Returns:
        Self reference
      • getHeight

        public long getHeight()
        Html "height" attribute.
        Returns:
        Value of attribute
      • setHeight

        public Video setHeight​(long value)
        Html "height" attribute.
        Parameters:
        value - Value of attribute
        Returns:
        Self reference
      • getWidth

        public long getWidth()
        Html "poster" attribute.
        Returns:
        Value of attribute
      • setWidth

        public Video setWidth​(long value)
        Html "poster" attribute.
        Parameters:
        value - Value of attribute
        Returns:
        Self reference
      • setEmptyAttributeValueAsBoolean

        protected Video setEmptyAttributeValueAsBoolean​(java.lang.String attributeName,
                                                        boolean value)
        Description copied from class: HtmlElement
        Sets "empty" attribute value as boolean (i.e. for "checked" attribute).
        Overrides:
        setEmptyAttributeValueAsBoolean in class HtmlElement
        Parameters:
        attributeName - Attribute name
        value - Attribute value as boolean
        Returns:
        Self reference
      • setId

        public Video setId​(java.lang.String value)
        Description copied from class: HtmlElement
        Html "id" attribute.
        Overrides:
        setId in class HtmlElement
        Parameters:
        value - Value of attribute
        Returns:
        Self reference
      • setCssClass

        public Video setCssClass​(java.lang.String value)
        Description copied from class: HtmlElement
        Sets Html "class" attribute - unless you're really sure that you want to replace existing classes, you probably should call HtmlElement.addCssClass(String) instead.
        Overrides:
        setCssClass in class HtmlElement
        Parameters:
        value - Value of attribute
        Returns:
        Self reference
      • addCssClass

        public Video addCssClass​(java.lang.String value)
        Description copied from class: HtmlElement
        Html "class" attribute. Adds a single, space-separated value while preserving existing ones.
        Overrides:
        addCssClass in class HtmlElement
        Parameters:
        value - Value of attribute
        Returns:
        Self reference
      • setStyleString

        public Video setStyleString​(java.lang.String value)
        Description copied from class: HtmlElement
        Html "style" attribute.
        Overrides:
        setStyleString in class HtmlElement
        Parameters:
        value - Value of attribute with style key/value pairs
        Returns:
        Self reference
      • setStyle

        public Video setStyle​(java.lang.String styleAttribute,
                              java.lang.String styleValue)
        Description copied from class: HtmlElement
        Html "style" attribute. Sets single style attribute value.
        Overrides:
        setStyle in class HtmlElement
        Parameters:
        styleAttribute - Style attribute name
        styleValue - Style attribute value
        Returns:
        Self reference
      • setTitle

        public Video setTitle​(java.lang.String value)
        Description copied from class: HtmlElement
        Html "title" attribute.
        Overrides:
        setTitle in class HtmlElement
        Parameters:
        value - Value of attribute
        Returns:
        Self reference
      • setData

        public Video setData​(java.lang.String attributeName,
                             java.lang.String value)
        Description copied from class: HtmlElement
        Custom Html5 "data-*" attribute.
        Overrides:
        setData in class HtmlElement
        Parameters:
        attributeName - Name of HTML5 data attribute (without the 'data-' prefix).
        value - Value of attribute
        Returns:
        Self reference
      • setAttributeValueAsLong

        public Video setAttributeValueAsLong​(java.lang.String name,
                                             long value)
        Description copied from class: AbstractElement
        Sets attribute value as long.
        Overrides:
        setAttributeValueAsLong in class AbstractElement
        Parameters:
        name - Attribute name
        value - Attribute value as long
        Returns:
        Self reference
      • setText

        public Video setText​(java.lang.String text)
        Description copied from class: AbstractElement
        Sets the content of the element to be the text given. All existing text content and non-text context is removed. If this element should have both textual content and nested elements, use Element.setContent(java.util.Collection<? extends org.jdom2.Content>) instead. Setting a null text value is equivalent to setting an empty string value.
        Overrides:
        setText in class AbstractElement
        Parameters:
        text - new text content for the element
        Returns:
        the target element