All Implemented Interfaces:
io.sf.carte.doc.style.css.CSSValue, CSSVal, Value, Serializable, Cloneable, CSSRectValue, CSSStyleValue

public class RectValue extends ComponentValue implements CSSRectValue
This class represents CSS rect values.

Original author: Stephane Hillion. For later modifications, see Git history.

See Also:
  • Field Details

    • top

      protected Value top
      The top value.
    • bottom

      protected Value bottom
      The bottom value.
    • left

      protected Value left
      The left value.
  • Constructor Details

  • Method Details

    • getPrimitiveType

      public io.sf.carte.doc.style.css.CSSValue.Type getPrimitiveType()
      The type of the value.
      Specified by:
      getPrimitiveType in interface io.sf.carte.doc.style.css.CSSValue
    • getCssText

      public String getCssText()
      A string representation of the current value.
      Specified by:
      getCssText in interface io.sf.carte.doc.style.css.CSSValue
    • getTop

      public Value getTop() throws DOMException
      Description copied from interface: CSSRectValue
      The top of the rectangle.
      Specified by:
      getTop in interface CSSRectValue
      Returns:
      the top of the rectangle.
      Throws:
      DOMException
    • getRight

      public Value getRight() throws DOMException
      Description copied from interface: CSSRectValue
      The right of the rectangle.
      Specified by:
      getRight in interface CSSRectValue
      Returns:
      the right of the rectangle.
      Throws:
      DOMException
    • getBottom

      public Value getBottom() throws DOMException
      Description copied from interface: CSSRectValue
      The bottom of the rectangle.
      Specified by:
      getBottom in interface CSSRectValue
      Returns:
      the bottom of the rectangle.
      Throws:
      DOMException
    • getLeft

      public Value getLeft() throws DOMException
      Description copied from interface: CSSRectValue
      The left of the rectangle.
      Specified by:
      getLeft in interface CSSRectValue
      Returns:
      the left of the rectangle.
      Throws:
      DOMException
    • getRectValue

      public RectValue getRectValue() throws DOMException
      Description copied from interface: Value
      If this value is a rect() value, get it.
      Specified by:
      getRectValue in interface Value
      Overrides:
      getRectValue in class AbstractValue
      Returns:
      the rect() value.
      Throws:
      DOMException - INVALID_ACCESS_ERR if this is not a rect() value.
    • getLength

      public int getLength() throws DOMException
      Description copied from interface: CSSVal
      If this value is a list or contains components, the number of CSSStyleValues in the list. The range of valid values of the indices is 0 to length-1 inclusive.
      Specified by:
      getLength in interface CSSVal
      Overrides:
      getLength in class AbstractValue
      Returns:
      the number of components, or 0 if this value is not a list nor does it contain components.
      Throws:
      DOMException
    • item

      public Value item(int index) throws DOMException
      Description copied from interface: Value
      If this value is a list, give the item corresponding to the requested index. If there is no item at such index, return null If this object is not a list and the index is 0, return itself.
      Specified by:
      item in interface CSSVal
      Specified by:
      item in interface Value
      Parameters:
      index - the index on the list.
      Returns:
      the item, or null if there is no item on that index.
      Throws:
      DOMException
    • clone

      public RectValue clone()
      Description copied from interface: Value
      Create and return a copy of this object.

      If this object is unmodifiable, the clone will be modifiable.

      Specified by:
      clone in interface CSSVal
      Specified by:
      clone in interface io.sf.carte.doc.style.css.CSSValue
      Specified by:
      clone in interface Value
      Overrides:
      clone in class AbstractValue
      Returns:
      a modifiable copy of this object.