Package com.smartgwt.client.types
Enum DrawShapeCommandType
- All Implemented Interfaces:
ValueEnum
,Serializable
,Comparable<DrawShapeCommandType>
,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionDraw a segment of a specified circle.Draws a straight line from the current point to the last "moveto" point.Draw a line from the current point to the given (x,y) coordinate which becomes the new current point.Start a new sub-path at a given (x,y) coordinate. -
Method Summary
Modifier and TypeMethodDescriptiongetValue()
static DrawShapeCommandType
Returns the enum constant of this type with the specified name.static DrawShapeCommandType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
CLOSE
Draws a straight line from the current point to the last "moveto" point. There are no arguments.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "close". -
MOVETO
Start a new sub-path at a given (x,y) coordinate. The args array for this command type is a two-element array of the X and Y coordinates.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "moveto". -
LINETO
Draw a line from the current point to the given (x,y) coordinate which becomes the new current point. Multiple (x,y) coordinates may be specified to draw a path, in which case the last point becomes the new current point. The args array for this command type is an array of one or more Points (two-element arrays of the X and Y coordinates).If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "lineto". -
CIRCLETO
Draw a segment of a specified circle. A straight line (the "initial line segment") is drawn from the current point to the start of the circular arc. The args array for this command type contains 4 values:- The center (cx,cy) Point (two-element array) of the circle.
- radius
- startAngle - Start angle in degrees
- endAngle - End angle in degrees
If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "circleto".
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
-