Package com.esri.arcgisruntime.symbology
Enum SimpleLineSymbol.MarkerPlacement
- java.lang.Object
-
- java.lang.Enum<SimpleLineSymbol.MarkerPlacement>
-
- com.esri.arcgisruntime.symbology.SimpleLineSymbol.MarkerPlacement
-
- All Implemented Interfaces:
Serializable
,Comparable<SimpleLineSymbol.MarkerPlacement>
- Enclosing class:
- SimpleLineSymbol
public static enum SimpleLineSymbol.MarkerPlacement extends Enum<SimpleLineSymbol.MarkerPlacement>
An enum that contains the possible marker placement locations on a SimpleLineSymbol. The types of markers are defined inSimpleLineSymbol.MarkerStyle
.- Since:
- 100.2.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BEGIN
A marker is placed at the beginning of the symbol.BEGIN_AND_END
A marker is placed at both the beginning and end of the symbol.END
A marker is placed at the end of the symbol.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SimpleLineSymbol.MarkerPlacement
valueOf(String name)
Returns the enum constant of this type with the specified name.static SimpleLineSymbol.MarkerPlacement[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BEGIN
public static final SimpleLineSymbol.MarkerPlacement BEGIN
A marker is placed at the beginning of the symbol.- Since:
- 100.2.0
-
END
public static final SimpleLineSymbol.MarkerPlacement END
A marker is placed at the end of the symbol.- Since:
- 100.2.0
-
BEGIN_AND_END
public static final SimpleLineSymbol.MarkerPlacement BEGIN_AND_END
A marker is placed at both the beginning and end of the symbol.- Since:
- 100.2.0
-
-
Method Detail
-
values
public static SimpleLineSymbol.MarkerPlacement[] 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.MarkerPlacement c : SimpleLineSymbol.MarkerPlacement.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.MarkerPlacement valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-