Module com.esri.arcgisruntime
Package com.esri.arcgisruntime.ogc.kml
Enum Class KmlContainer.ListItemType
- All Implemented Interfaces:
Serializable
,Comparable<KmlContainer.ListItemType>
,Constable
- Enclosing class:
KmlContainer
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
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescription(default) All child nodes can be enabled for display.All child nodes should be enabled for display, but they should not be shown in the table of contents.Everything in the container or network link can be turned off all at once.Only one child node can be enabled for display at any one time.Unknown KML list item type. -
Method Summary
Modifier and TypeMethodDescriptionstatic KmlContainer.ListItemType
Returns the enum constant of this class with the specified name.static KmlContainer.ListItemType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
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
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
All child nodes should be enabled for display, but they should not be shown in the table of contents.- Since:
- 100.4.0
-
UNKNOWN
Unknown KML list item type.- Since:
- 100.9.0
-
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
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
-