Package org.w3c.dom.svg
Interface SVGAngle
-
public interface SVGAngle
-
-
Field Summary
Fields Modifier and Type Field Description static short
SVG_ANGLETYPE_DEG
static short
SVG_ANGLETYPE_GRAD
static short
SVG_ANGLETYPE_RAD
static short
SVG_ANGLETYPE_UNKNOWN
static short
SVG_ANGLETYPE_UNSPECIFIED
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
convertToSpecifiedUnits(short unitType)
short
getUnitType()
float
getValue()
java.lang.String
getValueAsString()
float
getValueInSpecifiedUnits()
void
newValueSpecifiedUnits(short unitType, float valueInSpecifiedUnits)
void
setValue(float value)
void
setValueAsString(java.lang.String valueAsString)
void
setValueInSpecifiedUnits(float valueInSpecifiedUnits)
-
-
-
Field Detail
-
SVG_ANGLETYPE_UNKNOWN
static final short SVG_ANGLETYPE_UNKNOWN
- See Also:
- Constant Field Values
-
SVG_ANGLETYPE_UNSPECIFIED
static final short SVG_ANGLETYPE_UNSPECIFIED
- See Also:
- Constant Field Values
-
SVG_ANGLETYPE_DEG
static final short SVG_ANGLETYPE_DEG
- See Also:
- Constant Field Values
-
SVG_ANGLETYPE_RAD
static final short SVG_ANGLETYPE_RAD
- See Also:
- Constant Field Values
-
SVG_ANGLETYPE_GRAD
static final short SVG_ANGLETYPE_GRAD
- See Also:
- Constant Field Values
-
-
Method Detail
-
getUnitType
short getUnitType()
-
getValue
float getValue()
-
setValue
void setValue(float value) throws DOMException
- Throws:
DOMException
-
getValueInSpecifiedUnits
float getValueInSpecifiedUnits()
-
setValueInSpecifiedUnits
void setValueInSpecifiedUnits(float valueInSpecifiedUnits) throws DOMException
- Throws:
DOMException
-
getValueAsString
java.lang.String getValueAsString()
-
setValueAsString
void setValueAsString(java.lang.String valueAsString) throws DOMException
- Throws:
DOMException
-
newValueSpecifiedUnits
void newValueSpecifiedUnits(short unitType, float valueInSpecifiedUnits)
-
convertToSpecifiedUnits
void convertToSpecifiedUnits(short unitType)
-
-