Module com.esri.arcgisruntime
Package com.esri.arcgisruntime.ogc.kml
Enum Class KmlPlacemark.GraphicType
- All Implemented Interfaces:
Serializable
,Comparable<KmlPlacemark.GraphicType>
,Constable
- Enclosing class:
KmlPlacemark
The list of KML graphic types.
This is used to determine KML node type.
- Since:
- 100.4.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA extruded point.A extruded polygon.A extruded polyline.A model.A multi-geometry.There is no geometry present.A point.A polygon.A polyline.Unknown KML graphic type. -
Method Summary
Modifier and TypeMethodDescriptionstatic KmlPlacemark.GraphicType
Returns the enum constant of this class with the specified name.static KmlPlacemark.GraphicType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NONE
There is no geometry present.- Since:
- 100.4.0
-
POINT
A point.- Since:
- 100.4.0
-
POLYLINE
A polyline.- Since:
- 100.4.0
-
POLYGON
A polygon.- Since:
- 100.4.0
-
EXTRUDED_POINT
A extruded point.- Since:
- 100.4.0
-
EXTRUDED_POLYLINE
A extruded polyline.- Since:
- 100.4.0
-
EXTRUDED_POLYGON
A extruded polygon.- Since:
- 100.4.0
-
MODEL
A model.- Since:
- 100.4.0
-
MULTI_GEOMETRY
A multi-geometry. This is a container for geometries.- Since:
- 100.4.0
-
UNKNOWN
Unknown KML graphic type.- Since:
- 100.9.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
-