Enum Class KmlColorMode

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

public enum KmlColorMode extends Enum<KmlColorMode>
Defines a KML color mode.
Since:
100.6.0
  • Enum Constant Details

    • NORMAL

      public static final KmlColorMode NORMAL
      The color defined in the KmlColorStyle will be used.
      Since:
      100.6.0
    • RANDOM

      public static final KmlColorMode RANDOM
      The color defined in the KmlColorStyle will be overwritten by a random color.
      Since:
      100.6.0
  • Method Details

    • values

      public static KmlColorMode[] 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 KmlColorMode 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