Package net.opengis.gml._3
Class PointArrayPropertyType
- java.lang.Object
-
- net.opengis.gml._3.PointArrayPropertyType
-
- All Implemented Interfaces:
Serializable
public class PointArrayPropertyType extends Object implements Serializable
gml:PointArrayPropertyType is a container for an array of points. 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 PointArrayPropertyType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="PointArrayPropertyType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence maxOccurs="unbounded" minOccurs="0"> <element ref="{http://www.opengis.net/gml/3.2}Point"/> </sequence> <attGroup ref="{http://www.opengis.net/gml/3.2}OwnershipAttributeGroup"/> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PointArrayPropertyType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<PointType>getPoints()Gets the value of the points property.booleanisOwns()Gets the value of the owns property.voidsetOwns(Boolean value)Sets the value of the owns property.
-
-
-
Method Detail
-
getPoints
public List<PointType> getPoints()
Gets the value of the points 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 points property.For example, to add a new item, do as follows:
getPoints().add(newItem);Objects of the following type(s) are allowed in the list
PointType
-
isOwns
public boolean isOwns()
Gets the value of the owns property.- Returns:
- possible object is
Boolean
-
-