java.lang.Object
io.sf.carte.echosvg.css.dom.CSSOMValue
- All Implemented Interfaces:
io.sf.carte.doc.style.css.CSSValue
,CSSVal
,Value
,Serializable
,Cloneable
,CSSStyleValue
- Direct Known Subclasses:
CSSOMComputedStyle.ComputedCSSValue
,CSSOMStyleDeclaration.StyleDeclarationValue
,SVGStylableElement.PresentationAttributeValue
This class implements the
CSSStyleValue
interface.
Original author Stephane Hillion
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interface
To provide the actual value.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
FieldsModifier and TypeFieldDescriptionprotected ValueModificationHandler
The modifications handler.protected CSSOMValue.ValueProvider
The associated value. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionclone()
Create and return a copy of this object.static float
convertFloatValue
(short unitType, Value value) Converts the actual float value to the given unit type.If this value is a color value, get it.If this value is a counter() or counters() value, get it.DOM: ImplementsCSSValue.getCssText()
.io.sf.carte.doc.style.css.CSSValue.CssType
float
Convenience method that either returns the float value, if the value is numeric, or throws an exception.DOM: ImplementsCounter.getIdentifier()
.Convenience method that either returns an identifier or throws an exception.int
If this value is a list or contains components, the number ofCSSStyleValue
s in the list.Get the modification handler.io.sf.carte.doc.style.css.CSSValue.Type
If this value is a rect() value, get it.If this value can be used where a string is expected, get the value.short
Gets the css unit as in CSS4J'sCSSUnit
.Convenience method that either returns a String or URI or throws an exception.item
(int index) If this value is a list, give the item corresponding to the requested index.void
setCssText
(String cssText) void
setFloatValue
(float floatValue) If this value is a unit value, set the float value.void
Sets the modification handler of this value.protected static float
toCentimeters
(Value value) Converts the current value into centimeters.protected static float
Converts the current value into degrees.protected static float
toGradians
(Value value) Converts the current value into gradians.protected static float
Converts the current value into Hertz.protected static float
Converts the current value into inches.protected static float
Converts the current value into kHertz.protected static float
toMillimeters
(Value value) Converts the current value into millimeters.protected static float
toMilliseconds
(Value value) Converts the current value into milliseconds.protected static float
Converts the current value into picas.protected static float
Converts the current value into points.protected static float
Converts the current value into radians.protected static float
Converts the current value into seconds.Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.w3c.css.om.typed.CSSStyleValue
toString
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
isComponent, isIdentifier
-
Field Details
-
valueProvider
The associated value. -
handler
The modifications handler.
-
-
Constructor Details
-
CSSOMValue
Creates a new CSSOMValue.
-
-
Method Details
-
setModificationHandler
Sets the modification handler of this value.- Specified by:
setModificationHandler
in interfaceValue
- Parameters:
h
- the modification handler.
-
getCssText
DOM: ImplementsCSSValue.getCssText()
.- Specified by:
getCssText
in interfaceio.sf.carte.doc.style.css.CSSValue
-
setCssText
- Specified by:
setCssText
in interfaceio.sf.carte.doc.style.css.CSSValue
- Throws:
DOMException
-
getCssValueType
public io.sf.carte.doc.style.css.CSSValue.CssType getCssValueType()- Specified by:
getCssValueType
in interfaceio.sf.carte.doc.style.css.CSSValue
-
getPrimitiveType
public io.sf.carte.doc.style.css.CSSValue.Type getPrimitiveType()- Specified by:
getPrimitiveType
in interfaceio.sf.carte.doc.style.css.CSSValue
-
setFloatValue
Description copied from interface:Value
If this value is a unit value, set the float value.- Specified by:
setFloatValue
in interfaceValue
- Parameters:
floatValue
- the new value, in the current unit.- Throws:
DOMException
- if the value is not a unit value.
-
getFloatValue
Description copied from interface:CSSVal
Convenience method that either returns the float value, if the value is numeric, or throws an exception.- Specified by:
getFloatValue
in interfaceCSSVal
- Returns:
- the float value.
- Throws:
DOMException
-
convertFloatValue
Converts the actual float value to the given unit type. -
toCentimeters
Converts the current value into centimeters. -
toInches
Converts the current value into inches. -
toMillimeters
Converts the current value into millimeters. -
toPoints
Converts the current value into points. -
toPicas
Converts the current value into picas. -
toDegrees
Converts the current value into degrees. -
toRadians
Converts the current value into radians. -
toGradians
Converts the current value into gradians. -
toMilliseconds
Converts the current value into milliseconds. -
toSeconds
Converts the current value into seconds. -
toHertz
Converts the current value into Hertz. -
tokHertz
Converts the current value into kHertz. -
getIdentifierValue
Description copied from interface:CSSVal
Convenience method that either returns an identifier or throws an exception.- Specified by:
getIdentifierValue
in interfaceCSSVal
- Throws:
DOMException
- INVALID_ACCESS_ERR: Raised if the value doesn't contain an identifier value.
-
getUnitType
public short getUnitType()Description copied from interface:Value
Gets the css unit as in CSS4J'sCSSUnit
.If the value has no valid CSS unit, returns
CSSUnit.CSS_INVALID
.- Specified by:
getUnitType
in interfaceValue
- Returns:
- the css unit as in CSS4J's
CSSUnit
.
-
getStringValue
Description copied from interface:CSSVal
If this value can be used where a string is expected, get the value.- Specified by:
getStringValue
in interfaceCSSVal
- Returns:
- the string value, without the commas.
- Throws:
DOMException
- INVALID_ACCESS_ERR: Raised if the value doesn't contain a String.
-
getModificationHandler
Description copied from interface:Value
Get the modification handler.- Specified by:
getModificationHandler
in interfaceValue
- Returns:
- the modification handler, or
null
if there is no handler.
-
getURIValue
Description copied from interface:CSSVal
Convenience method that either returns a String or URI or throws an exception.- Specified by:
getURIValue
in interfaceCSSVal
- Throws:
DOMException
- INVALID_ACCESS_ERR: Raised if the value doesn't contain a String nor a URI value.
-
getCounterValue
Description copied from interface:Value
If this value is a counter() or counters() value, get it.- Specified by:
getCounterValue
in interfaceValue
- Returns:
- the counter() value.
- Throws:
DOMException
- INVALID_ACCESS_ERR if this is not a counter() or counters() value.
-
getRectValue
Description copied from interface:Value
If this value is a rect() value, get it.- Specified by:
getRectValue
in interfaceValue
- Returns:
- the rect() value.
- Throws:
DOMException
- INVALID_ACCESS_ERR if this is not a rect() value.
-
getColorValue
Description copied from interface:Value
If this value is a color value, get it.- Specified by:
getColorValue
in interfaceValue
- Returns:
- the color value.
- Throws:
DOMException
- INVALID_ACCESS_ERR if this is not a color value.
-
getLength
public int 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. -
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. -
getIdentifier
DOM: ImplementsCounter.getIdentifier()
.- Specified by:
getIdentifier
in interfaceValue
-
clone
Description copied from interface:Value
Create and return a copy of this object.If this object is unmodifiable, the clone will be modifiable.
-