java.lang.Object
io.sf.carte.echosvg.css.engine.value.AbstractValue
io.sf.carte.echosvg.css.engine.value.ComponentValue
io.sf.carte.echosvg.css.engine.value.RectValue
- All Implemented Interfaces:
io.sf.carte.doc.style.css.CSSValue
,CSSVal
,Value
,Serializable
,Cloneable
,CSSRectValue
,CSSStyleValue
This class represents CSS rect values.
Original author: Stephane Hillion. For later modifications, see Git history.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface io.sf.carte.doc.style.css.CSSValue
io.sf.carte.doc.style.css.CSSValue.CssType, io.sf.carte.doc.style.css.CSSValue.Type
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionclone()
Create and return a copy of this object.The bottom of the rectangle.A string representation of the current value.getLeft()
The left of the rectangle.int
If this value is a list or contains components, the number ofCSSStyleValue
s in the list.io.sf.carte.doc.style.css.CSSValue.Type
The type of the value.If this value is a rect() value, get it.getRight()
The right of the rectangle.getTop()
The top of the rectangle.item
(int index) If this value is a list, give the item corresponding to the requested index.Methods inherited from class io.sf.carte.echosvg.css.engine.value.ComponentValue
componentAdded, componentChanged, componentize, componentRemoved, getComponentHandler
Methods inherited from class io.sf.carte.echosvg.css.engine.value.AbstractValue
createDOMException, equals, getColorValue, getCounterValue, getCssValueType, getFloatValue, getIdentifierValue, getModificationHandler, getStringValue, getURIValue, hashCode, setCssText, setFloatValue, setModificationHandler, toString
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface io.sf.carte.echosvg.css.engine.value.CSSVal
matches, writeCssText
Methods inherited from interface io.sf.carte.doc.style.css.CSSValue
getMinifiedCssText, getMinifiedCssText, isPrimitiveValue
Methods inherited from interface io.sf.carte.echosvg.css.engine.value.Value
getIdentifier, getUnitType, isComponent, isIdentifier
-
Field Details
-
top
The top value. -
right
The right value. -
bottom
The bottom value. -
left
The left value.
-
-
Constructor Details
-
RectValue
Creates a new Rect value.
-
-
Method Details
-
getPrimitiveType
public io.sf.carte.doc.style.css.CSSValue.Type getPrimitiveType()The type of the value.- Specified by:
getPrimitiveType
in interfaceio.sf.carte.doc.style.css.CSSValue
-
getCssText
A string representation of the current value.- Specified by:
getCssText
in interfaceio.sf.carte.doc.style.css.CSSValue
-
getTop
Description copied from interface:CSSRectValue
The top of the rectangle.- Specified by:
getTop
in interfaceCSSRectValue
- Returns:
- the top of the rectangle.
- Throws:
DOMException
-
getRight
Description copied from interface:CSSRectValue
The right of the rectangle.- Specified by:
getRight
in interfaceCSSRectValue
- Returns:
- the right of the rectangle.
- Throws:
DOMException
-
getBottom
Description copied from interface:CSSRectValue
The bottom of the rectangle.- Specified by:
getBottom
in interfaceCSSRectValue
- Returns:
- the bottom of the rectangle.
- Throws:
DOMException
-
getLeft
Description copied from interface:CSSRectValue
The left of the rectangle.- Specified by:
getLeft
in interfaceCSSRectValue
- Returns:
- the left of the rectangle.
- Throws:
DOMException
-
getRectValue
Description copied from interface:Value
If this value is a rect() value, get it.- Specified by:
getRectValue
in interfaceValue
- Overrides:
getRectValue
in classAbstractValue
- Returns:
- the rect() value.
- Throws:
DOMException
- INVALID_ACCESS_ERR if this is not a rect() value.
-
getLength
Description copied from interface:CSSVal
If this value is a list or contains components, the number ofCSSStyleValue
s in the list. The range of valid values of the indices is0
tolength-1
inclusive.- Specified by:
getLength
in interfaceCSSVal
- Overrides:
getLength
in classAbstractValue
- Returns:
- the number of components, or
0
if this value is not a list nor does it contain components. - Throws:
DOMException
-
item
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, returnnull
If this object is not a list and the index is0
, return itself.- Specified by:
item
in interfaceCSSVal
- Specified by:
item
in interfaceValue
- Parameters:
index
- the index on the list.- Returns:
- the item, or
null
if there is no item on that index. - Throws:
DOMException
-
clone
Description copied from interface:Value
Create and return a copy of this object.If this object is unmodifiable, the clone will be modifiable.
-