Package org.bremersee.opengis.kml.v22
Class Create
java.lang.Object
org.bremersee.opengis.kml.v22.Create
- All Implemented Interfaces:
Serializable
Java class for CreateType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="CreateType">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element ref="{http://www.opengis.net/kml/2.2}AbstractContainerGroup" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected List<jakarta.xml.bind.JAXBElement<? extends AbstractContainerType>> -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionList<jakarta.xml.bind.JAXBElement<? extends AbstractContainerType>> Gets the value of the abstractContainerGroups property.
-
Field Details
-
abstractContainerGroups
protected List<jakarta.xml.bind.JAXBElement<? extends AbstractContainerType>> abstractContainerGroups
-
-
Constructor Details
-
Create
public Create()
-
-
Method Details
-
getAbstractContainerGroups
public List<jakarta.xml.bind.JAXBElement<? extends AbstractContainerType>> getAbstractContainerGroups()Gets the value of the abstractContainerGroups 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 abstractContainerGroups property.For example, to add a new item, do as follows:
getAbstractContainerGroups().add(newItem);Objects of the following type(s) are allowed in the list
JAXBElement<AbstractContainerType>JAXBElement<DocumentType>JAXBElement<FolderType>- Returns:
- The value of the abstractContainerGroups property.
-