Package com.esri.arcgisruntime.symbology
Enum SimpleLineSymbol.Style
- java.lang.Object
-
- java.lang.Enum<SimpleLineSymbol.Style>
-
- com.esri.arcgisruntime.symbology.SimpleLineSymbol.Style
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SimpleLineSymbol.Style>
- Enclosing class:
- SimpleLineSymbol
public static enum SimpleLineSymbol.Style extends java.lang.Enum<SimpleLineSymbol.Style>
The list of possible simple line symbol styles.This is used to determine the style of the simple line symbol.
- Since:
- 100.0.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DASH
Dash line.DASH_DOT
Dash dot line.DASH_DOT_DOT
Dash dot dot line.DOT
Dot line.LONG_DASH
Dash line with long dash.LONG_DASH_DOT
Dash dot line with long dash.NULL
Invisible line.SHORT_DASH
Dash line with short gaps.SHORT_DASH_DOT
Dash dot line with short gaps.SHORT_DASH_DOT_DOT
Dash dot dot line with short gaps.SHORT_DOT
Dot line with short gaps.SOLID
Solid line.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SimpleLineSymbol.Style
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SimpleLineSymbol.Style[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DASH
public static final SimpleLineSymbol.Style DASH
Dash line.- Since:
- 100.0.0
-
DASH_DOT
public static final SimpleLineSymbol.Style DASH_DOT
Dash dot line.- Since:
- 100.0.0
-
DASH_DOT_DOT
public static final SimpleLineSymbol.Style DASH_DOT_DOT
Dash dot dot line.- Since:
- 100.0.0
-
DOT
public static final SimpleLineSymbol.Style DOT
Dot line.- Since:
- 100.0.0
-
NULL
public static final SimpleLineSymbol.Style NULL
Invisible line.- Since:
- 100.0.0
-
SOLID
public static final SimpleLineSymbol.Style SOLID
Solid line.- Since:
- 100.0.0
-
LONG_DASH
public static final SimpleLineSymbol.Style LONG_DASH
Dash line with long dash.- Since:
- 100.10.0
-
LONG_DASH_DOT
public static final SimpleLineSymbol.Style LONG_DASH_DOT
Dash dot line with long dash.- Since:
- 100.10.0
-
SHORT_DASH
public static final SimpleLineSymbol.Style SHORT_DASH
Dash line with short gaps.- Since:
- 100.10.0
-
SHORT_DASH_DOT
public static final SimpleLineSymbol.Style SHORT_DASH_DOT
Dash dot line with short gaps.- Since:
- 100.10.0
-
SHORT_DASH_DOT_DOT
public static final SimpleLineSymbol.Style SHORT_DASH_DOT_DOT
Dash dot dot line with short gaps.- Since:
- 100.10.0
-
SHORT_DOT
public static final SimpleLineSymbol.Style SHORT_DOT
Dot line with short gaps.- Since:
- 100.10.0
-
-
Method Detail
-
values
public static SimpleLineSymbol.Style[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SimpleLineSymbol.Style c : SimpleLineSymbol.Style.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SimpleLineSymbol.Style valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-