Module com.esri.arcgisruntime
Package com.esri.arcgisruntime.symbology
Enum Class SimpleLineSymbol.MarkerStyle
java.lang.Object
java.lang.Enum<SimpleLineSymbol.MarkerStyle>
com.esri.arcgisruntime.symbology.SimpleLineSymbol.MarkerStyle
- All Implemented Interfaces:
Serializable
,Comparable<SimpleLineSymbol.MarkerStyle>
,Constable
- Enclosing class:
SimpleLineSymbol
An enum that contains the possible marker styles to be placed at the ends of a SimpleLineSymbol.
- Since:
- 100.2.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionArrow marker(s) are placed at the beginning, end, or beginning and end of the symbol depending on the associated value of theSimpleLineSymbol.MarkerPlacement
.No markers are placed at the ends of the symbol. -
Method Summary
Modifier and TypeMethodDescriptionstatic SimpleLineSymbol.MarkerStyle
Returns the enum constant of this class with the specified name.static SimpleLineSymbol.MarkerStyle[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NONE
No markers are placed at the ends of the symbol.- Since:
- 100.2.0
-
ARROW
Arrow marker(s) are placed at the beginning, end, or beginning and end of the symbol depending on the associated value of theSimpleLineSymbol.MarkerPlacement
.- Since:
- 100.2.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
-