Package net.opengis.gml._3
Class SurfaceArrayPropertyType
- java.lang.Object
-
- net.opengis.gml._3.SurfaceArrayPropertyType
-
- All Implemented Interfaces:
Serializable
public class SurfaceArrayPropertyType extends Object implements Serializable
gml:SurfaceArrayPropertyType is a container for an array of surfaces. The elements are always contained in the array property, referencing geometry elements or arrays of geometry elements via XLinks is not supported.Java class for SurfaceArrayPropertyType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="SurfaceArrayPropertyType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence maxOccurs="unbounded" minOccurs="0"> <element ref="{http://www.opengis.net/gml/3.2}AbstractSurface"/> </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 AbstractSurfaceType>>abstractSurfacesprotected Booleanowns
-
Constructor Summary
Constructors Constructor Description SurfaceArrayPropertyType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<JAXBElement<? extends AbstractSurfaceType>>getAbstractSurfaces()Gets the value of the abstractSurfaces property.booleanisOwns()Gets the value of the owns property.voidsetOwns(Boolean value)Sets the value of the owns property.
-
-
-
Field Detail
-
abstractSurfaces
protected List<JAXBElement<? extends AbstractSurfaceType>> abstractSurfaces
-
owns
protected Boolean owns
-
-
Method Detail
-
getAbstractSurfaces
public List<JAXBElement<? extends AbstractSurfaceType>> getAbstractSurfaces()
Gets the value of the abstractSurfaces 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 abstractSurfaces property.For example, to add a new item, do as follows:
getAbstractSurfaces().add(newItem);Objects of the following type(s) are allowed in the list
JAXBElement<PolygonType>JAXBElement<AbstractSurfaceType>
-
isOwns
public boolean isOwns()
Gets the value of the owns property.- Returns:
- possible object is
Boolean
-
-