Package io.sf.carte.doc.style.css
Interface CSSFunctionValue
- All Superinterfaces:
Cloneable
,CSSPrimitiveValue
,CSSTypedValue
,CSSValue
- All Known Subinterfaces:
CSSGradientValue
- All Known Implementing Classes:
FunctionValue
,GradientValue
A function value.
-
Nested Class Summary
Nested classes/interfaces inherited from interface io.sf.carte.doc.style.css.CSSValue
CSSValue.CssType, CSSValue.Type
-
Method Summary
Modifier and TypeMethodDescriptionclone()
Creates and returns a copy of this value.Get the arguments of this function.Get the function name.Methods inherited from interface io.sf.carte.doc.style.css.CSSPrimitiveValue
getUnitType, isNegativeNumber, setExpectInteger
Methods inherited from interface io.sf.carte.doc.style.css.CSSTypedValue
getFloatValue, getStringValue, isCalculatedNumber, isNumberZero, setFloatValue, setStringValue, toRGBColor, toRGBColorValue
Methods inherited from interface io.sf.carte.doc.style.css.CSSValue
getCssText, getCssValueType, getMinifiedCssText, getPrimitiveType, matches, setCssText, writeCssText
-
Method Details
-
getArguments
LinkedCSSValueList getArguments()Get the arguments of this function.- Returns:
- the list of arguments of this function.
-
getFunctionName
String getFunctionName()Get the function name.- Returns:
- the function name.
-
clone
CSSFunctionValue clone()Description copied from interface:CSSValue
Creates and returns a copy of this value.
-