Package org.w3c.dom.svg
Interface SVGAngle
-
public interface SVGAngle
-
-
Field Summary
Fields Modifier and Type Field Description static shortSVG_ANGLETYPE_DEGstatic shortSVG_ANGLETYPE_GRADstatic shortSVG_ANGLETYPE_RADstatic shortSVG_ANGLETYPE_UNKNOWNstatic shortSVG_ANGLETYPE_UNSPECIFIED
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidconvertToSpecifiedUnits(short unitType)shortgetUnitType()floatgetValue()java.lang.StringgetValueAsString()floatgetValueInSpecifiedUnits()voidnewValueSpecifiedUnits(short unitType, float valueInSpecifiedUnits)voidsetValue(float value)voidsetValueAsString(java.lang.String valueAsString)voidsetValueInSpecifiedUnits(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)
-
-