CSSPrimitiveValue
, CSSValueList
public interface CSSValue
CSSValue
interface represents a simple or a complex value. A CSSValue
object only occurs in a context of a CSS property. See also the Document Object Model (DOM) Level 2 Style Specification.
Modifier and Type | Field | Description |
---|---|---|
static final short |
CSS_CUSTOM |
The value is a custom value. |
static final short |
CSS_INHERIT |
The value is inherited and the cssText contains "inherit". |
static final short |
CSS_PRIMITIVE_VALUE |
The value is a primitive value and an instance of the CSSPrimitiveValue interface can be obtained by using binding-specific casting methods on this instance of the CSSValue interface. |
static final short |
CSS_VALUE_LIST |
The value is a CSSValue list and an instance of the CSSValueList interface can be obtained by using binding-specific casting methods on this instance of the CSSValue interface. |
Modifier and Type | Method | Description |
---|---|---|
String |
getCssText() |
A string representation of the current value. |
short |
getCssValueType() |
A code defining the type of the value as defined above. |
void |
setCssText |
A string representation of the current value. |
static final short CSS_INHERIT
cssText
contains "inherit".static final short CSS_PRIMITIVE_VALUE
CSSPrimitiveValue
interface can be obtained by using binding-specific casting methods on this instance of the CSSValue
interface.static final short CSS_VALUE_LIST
CSSValue
list and an instance of the CSSValueList
interface can be obtained by using binding-specific casting methods on this instance of the CSSValue
interface.static final short CSS_CUSTOM
String getCssText()
void setCssText(String cssText) throws DOMException
DOMException
- SYNTAX_ERR: Raised if the specified CSS string value has a syntax error (according to the attached property) or is unparsable. short getCssValueType()
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/jdk.xml.dom/org/w3c/dom/css/CSSValue.html