Package net.opengis.gml._3
Class GeometryArrayPropertyType
- java.lang.Object
-
- net.opengis.gml._3.GeometryArrayPropertyType
-
- All Implemented Interfaces:
Serializable
public class GeometryArrayPropertyType extends Object implements Serializable
If a feature has a property which takes an array of geometry elements as its value, this is called a geometry array property. A generic type for such a geometry property is GeometryArrayPropertyType. The elements are always contained inline in the array property, referencing geometry elements or arrays of geometry elements via XLinks is not supported.Java class for GeometryArrayPropertyType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="GeometryArrayPropertyType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence maxOccurs="unbounded" minOccurs="0"> <element ref="{http://www.opengis.net/gml/3.2}AbstractGeometry"/> </sequence> <attGroup ref="{http://www.opengis.net/gml/3.2}OwnershipAttributeGroup"/> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected List<JAXBElement<? extends AbstractGeometryType>>abstractGeometriesprotected Booleanowns
-
Constructor Summary
Constructors Constructor Description GeometryArrayPropertyType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<JAXBElement<? extends AbstractGeometryType>>getAbstractGeometries()Gets the value of the abstractGeometries property.booleanisOwns()Gets the value of the owns property.voidsetOwns(Boolean value)Sets the value of the owns property.
-
-
-
Field Detail
-
abstractGeometries
protected List<JAXBElement<? extends AbstractGeometryType>> abstractGeometries
-
owns
protected Boolean owns
-
-
Method Detail
-
getAbstractGeometries
public List<JAXBElement<? extends AbstractGeometryType>> getAbstractGeometries()
Gets the value of the abstractGeometries 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 JAXB object. This is why there is not a
setmethod for the abstractGeometries property.For example, to add a new item, do as follows:
getAbstractGeometries().add(newItem);Objects of the following type(s) are allowed in the list
JAXBElement<PolygonType>JAXBElement<AbstractSurfaceType>JAXBElement<PointType>JAXBElement<LineStringType>JAXBElement<AbstractCurveType>JAXBElement<AbstractGeometricPrimitiveType>JAXBElement<AbstractGeometryType>
-
isOwns
public boolean isOwns()
Gets the value of the owns property.- Returns:
- possible object is
Boolean
-
-