Module com.esri.arcgisruntime
Package com.esri.arcgisruntime.data
Enum Class FeatureTemplate.DrawingTool
- All Implemented Interfaces:
Serializable
,Comparable<FeatureTemplate.DrawingTool>
,Constable
- Enclosing class:
FeatureTemplate
Represents a drawing tool which can be used to digitize geometries. A drawing tool is typically implemented by the application developer or SDK toolkit.
- Since:
- 100.0.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionAuto complete polygon.A circle.A down arrow.An ellipse.A free hand.A left arrow.A line.None.A point.A polygon.A rectangle.A right arrow.A text.A triangle.Drawing tool is unknown.An up arrow. -
Method Summary
Modifier and TypeMethodDescriptionstatic FeatureTemplate.DrawingTool
Returns the enum constant of this class with the specified name.static FeatureTemplate.DrawingTool[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
AUTO_COMPLETE_POLYGON
Auto complete polygon.- Since:
- 100.0.0
-
CIRCLE
A circle.- Since:
- 100.0.0
-
DOWN_ARROW
A down arrow.- Since:
- 100.0.0
-
ELLIPSE
An ellipse.- Since:
- 100.0.0
-
FREEHAND
A free hand.- Since:
- 100.0.0
-
LEFT_ARROW
A left arrow.- Since:
- 100.0.0
-
LINE
A line.- Since:
- 100.0.0
-
NONE
None.- Since:
- 100.0.0
-
POINT
A point.- Since:
- 100.0.0
-
POLYGON
A polygon.- Since:
- 100.0.0
-
RECTANGLE
A rectangle. A rectangle.- Since:
- 100.0.0
-
RIGHT_ARROW
A right arrow.- Since:
- 100.0.0
-
TEXT
A text.- Since:
- 100.0.0
-
TRIANGLE
A triangle.- Since:
- 100.0.0
-
UP_ARROW
An up arrow.- Since:
- 100.0.0
-
UNKNOWN
Drawing tool is unknown.- Since:
- 100.0.0
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-