Package com.smartgwt.client.types
Enum DrawShapeCommandType
- All Implemented Interfaces:
- ValueEnum,- Serializable,- Comparable<DrawShapeCommandType>,- Constable
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum 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 SummaryModifier and TypeMethodDescriptiongetValue()static DrawShapeCommandTypeReturns 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- 
CLOSEDraws 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 XMLfile or server-side DataSource descriptor (.ds.xml file), use the value "close".
- 
MOVETOStart 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 XMLfile or server-side DataSource descriptor (.ds.xml file), use the value "moveto".
- 
LINETODraw 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 XMLfile or server-side DataSource descriptor (.ds.xml file), use the value "lineto".
- 
CIRCLETODraw 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 XMLfile or server-side DataSource descriptor (.ds.xml file), use the value "circleto".
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
- 
getValue
 
-