Module com.esri.arcgisruntime
Package com.esri.arcgisruntime.symbology
Enum Class SimpleLineSymbol.Style
- All Implemented Interfaces:
Serializable
,Comparable<SimpleLineSymbol.Style>
,Constable
- Enclosing class:
SimpleLineSymbol
The list of possible simple line symbol styles.
This is used to determine the style of the simple line symbol.
- 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 ConstantDescriptionDash line.Dash dot line.Dash dot dot line.Dot line.Dash line with long dash.Dash dot line with long dash.Invisible line.Dash line with short gaps.Dash dot line with short gaps.Dash dot dot line with short gaps.Dot line with short gaps.Solid line. -
Method Summary
Modifier and TypeMethodDescriptionstatic SimpleLineSymbol.Style
Returns the enum constant of this class with the specified name.static SimpleLineSymbol.Style[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DASH
Dash line.- Since:
- 100.0.0
-
DASH_DOT
Dash dot line.- Since:
- 100.0.0
-
DASH_DOT_DOT
Dash dot dot line.- Since:
- 100.0.0
-
DOT
Dot line.- Since:
- 100.0.0
-
NULL
Invisible line.- Since:
- 100.0.0
-
SOLID
Solid line.- Since:
- 100.0.0
-
LONG_DASH
Dash line with long dash.- Since:
- 100.10.0
-
LONG_DASH_DOT
Dash dot line with long dash.- Since:
- 100.10.0
-
SHORT_DASH
Dash line with short gaps.- Since:
- 100.10.0
-
SHORT_DASH_DOT
Dash dot line with short gaps.- Since:
- 100.10.0
-
SHORT_DASH_DOT_DOT
Dash dot dot line with short gaps.- Since:
- 100.10.0
-
SHORT_DOT
Dot line with short gaps.- Since:
- 100.10.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
-