Package com.esri.arcgisruntime.symbology
Enum SimpleMarkerSceneSymbol.Style
- java.lang.Object
-
- java.lang.Enum<SimpleMarkerSceneSymbol.Style>
-
- com.esri.arcgisruntime.symbology.SimpleMarkerSceneSymbol.Style
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SimpleMarkerSceneSymbol.Style>
- Enclosing class:
- SimpleMarkerSceneSymbol
public static enum SimpleMarkerSceneSymbol.Style extends java.lang.Enum<SimpleMarkerSceneSymbol.Style>
Defines the marker style for this SimpleMarkerSceneSymbol. A style describes the 3D shape of the marker.- Since:
- 100.0.0 for JavaSE and 100.1.0 for Android
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SimpleMarkerSceneSymbol.Style
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SimpleMarkerSceneSymbol.Style[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CUBE
public static final SimpleMarkerSceneSymbol.Style CUBE
The marker is a cube.- Since:
- 100.0.0 for JavaSE and 100.1.0 for Android
-
CONE
public static final SimpleMarkerSceneSymbol.Style CONE
The marker is a cone.- Since:
- 100.0.0 for JavaSE and 100.1.0 for Android
-
CYLINDER
public static final SimpleMarkerSceneSymbol.Style CYLINDER
The marker is a cylinder.- Since:
- 100.0.0 for JavaSE and 100.1.0 for Android
-
DIAMOND
public static final SimpleMarkerSceneSymbol.Style DIAMOND
The marker is a diamond.- Since:
- 100.0.0 for JavaSE and 100.1.0 for Android
-
SPHERE
public static final SimpleMarkerSceneSymbol.Style SPHERE
The marker is a sphere.- Since:
- 100.0.0 for JavaSE and 100.1.0 for Android
-
TETRAHEDRON
public static final SimpleMarkerSceneSymbol.Style TETRAHEDRON
The marker is a tetrahedron.- Since:
- 100.0.0 for JavaSE and 100.1.0 for Android
-
-
Method Detail
-
values
public static SimpleMarkerSceneSymbol.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 (SimpleMarkerSceneSymbol.Style c : SimpleMarkerSceneSymbol.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 SimpleMarkerSceneSymbol.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
-
-