Package com.google.earth.kml._2
Class MultiGeometryType
java.lang.Object
com.google.earth.kml._2.ObjectType
com.google.earth.kml._2.GeometryType
com.google.earth.kml._2.MultiGeometryType
<p>Java class for MultiGeometryType complex type</p>.
<p>The following schema fragment specifies the expected content contained within this class.</p>
<pre>{@code
<complexType name="MultiGeometryType">
<complexContent>
<extension base="{http://earth.google.com/kml/2.1}GeometryType">
<sequence>
<element ref="{http://earth.google.com/kml/2.1}Geometry" maxOccurs="unbounded"/>
</sequence>
</extension>
</complexContent>
</complexType>
}</pre>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected List<jakarta.xml.bind.JAXBElement<? extends GeometryType>> Fields inherited from class com.google.earth.kml._2.ObjectType
id, targetId -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionList<jakarta.xml.bind.JAXBElement<? extends GeometryType>> Gets the value of the geometry property.Methods inherited from class com.google.earth.kml._2.ObjectType
getId, getTargetId, setId, setTargetId
-
Field Details
-
geometry
-
-
Constructor Details
-
MultiGeometryType
public MultiGeometryType()
-
-
Method Details
-
getGeometry
Gets the value of the geometry property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the Jakarta XML Binding object. This is why there is not a
setmethod for the geometry property.For example, to add a new item, do as follows:
getGeometry().add(newItem);
Objects of the following type(s) are allowed in the list
JAXBElement<GeometryType>JAXBElement<LineStringType>JAXBElement<LinearRingType>JAXBElement<ModelType>JAXBElement<MultiGeometryType>JAXBElement<PointType>JAXBElement<PolygonType>- Returns:
- The value of the geometry property.
-