-
public class KmlContainerRepresents a KML Document or Folder.
-
-
Method Summary
Modifier and Type Method Description StringgetContainerId()Gets the Container ID if it is specified KmlStylegetStyle(String styleID)Gets a style based on an ID StringgetStyleIdFromMap(String styleID)Gets a style Id from map based on an ID StringgetProperty(String propertyName)Gets the value of a property based on the given key booleanhasProperties()Gets whether the container has any properties booleanhasProperty(String keyValue)Gets whether the given key exists in the properties booleanhasContainers()Gets whether the container has containers Iterable<KmlContainer>getContainers()Gets an iterable of nested KmlContainers Iterable<String>getProperties()Gets an iterable of the properties hashmap entries Iterable<KmlPlacemark>getPlacemarks()Gets an iterable of KmlPlacemarks booleanhasPlacemarks()Gets whether the container has any placemarks Iterable<KmlGroundOverlay>getGroundOverlays()Gets an iterable of KmlGroundOverlay objects StringtoString()-
-
Method Detail
-
getContainerId
String getContainerId()
Gets the Container ID if it is specified
-
getStyleIdFromMap
String getStyleIdFromMap(String styleID)
Gets a style Id from map based on an ID
-
getProperty
String getProperty(String propertyName)
Gets the value of a property based on the given key
- Parameters:
propertyName- property key to find
-
hasProperties
boolean hasProperties()
Gets whether the container has any properties
-
hasProperty
boolean hasProperty(String keyValue)
Gets whether the given key exists in the properties
- Parameters:
keyValue- property key to find
-
hasContainers
boolean hasContainers()
Gets whether the container has containers
-
getContainers
Iterable<KmlContainer> getContainers()
Gets an iterable of nested KmlContainers
-
getProperties
Iterable<String> getProperties()
Gets an iterable of the properties hashmap entries
-
getPlacemarks
Iterable<KmlPlacemark> getPlacemarks()
Gets an iterable of KmlPlacemarks
-
hasPlacemarks
boolean hasPlacemarks()
Gets whether the container has any placemarks
-
getGroundOverlays
Iterable<KmlGroundOverlay> getGroundOverlays()
Gets an iterable of KmlGroundOverlay objects
-
-
-
-