Enum Class KmlGeometry.Type

java.lang.Object
java.lang.Enum<KmlGeometry.Type>
com.esri.arcgisruntime.ogc.kml.KmlGeometry.Type
All Implemented Interfaces:
Serializable, Comparable<KmlGeometry.Type>, Constable
Enclosing class:
KmlGeometry

public static enum KmlGeometry.Type extends Enum<KmlGeometry.Type>
The list of KML geometry types. This is used to determine KML node type.
Since:
100.4.0
See Also:
  • Enum Constant Details

    • POINT

      public static final KmlGeometry.Type POINT
      A point.
      Since:
      100.4.0
    • POLYLINE

      public static final KmlGeometry.Type POLYLINE
      A polyline.
      Since:
      100.4.0
    • POLYGON

      public static final KmlGeometry.Type POLYGON
      A polygon.
      Since:
      100.4.0
    • MODEL

      public static final KmlGeometry.Type MODEL
      A model.
      Since:
      100.4.0
    • UNKNOWN

      public static final KmlGeometry.Type UNKNOWN
      Unknown KML geometry type.
      Since:
      100.9.0
  • Method Details

    • values

      public static KmlGeometry.Type[] 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

      public static KmlGeometry.Type valueOf(String name)
      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 name
      NullPointerException - if the argument is null