Enum Class KmlContainer.ListItemType

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

public static enum KmlContainer.ListItemType extends Enum<KmlContainer.ListItemType>
The list of KML list item types. Defines how visibility selection should work, enabling either single or multiple selection of child nodes of a document, folder, or network link.
Since:
100.4.0
  • Enum Constant Details

    • CHECK

      public static final KmlContainer.ListItemType CHECK
      (default) All child nodes can be enabled for display. In a table of contents, nodes should be shown with checkboxes to enable multiple selection.
      Since:
      100.4.0
    • RADIO_FOLDER

      public static final KmlContainer.ListItemType RADIO_FOLDER
      Only one child node can be enabled for display at any one time. In a table of contents, nodes should be shown with radio buttons. When a child node is selected for display, sibling nodes will be hidden automatically.
      Since:
      100.4.0
    • CHECK_HIDE_CHILDREN

      public static final KmlContainer.ListItemType CHECK_HIDE_CHILDREN
      All child nodes should be enabled for display, but they should not be shown in the table of contents.
      Since:
      100.4.0
    • UNKNOWN

      public static final KmlContainer.ListItemType UNKNOWN
      Unknown KML list item type.
      Since:
      100.9.0
    • CHECK_OFF_ONLY

      public static final KmlContainer.ListItemType CHECK_OFF_ONLY
      Everything in the container or network link can be turned off all at once. Prevents nodes from becoming visible simultaneously. Child nodes must be enabled individually. This is useful if the container or network link contains a large amount of data.
      Since:
      100.12.0
  • Method Details

    • values

      public static KmlContainer.ListItemType[] 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 KmlContainer.ListItemType 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