Package net.opengis.gml._3
Class SurfaceProperty
- java.lang.Object
-
- net.opengis.gml._3.SurfaceProperty
-
- All Implemented Interfaces:
Serializable
public class SurfaceProperty extends Object implements Serializable
A property that has a surface as its value domain may either be an appropriate geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Either the reference or the contained element shall be given, but neither both nor none.Java class for SurfacePropertyType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="SurfacePropertyType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence minOccurs="0"> <element ref="{http://www.opengis.net/gml/3.2}AbstractSurface"/> </sequence> <attGroup ref="{http://www.opengis.net/gml/3.2}OwnershipAttributeGroup"/> <attGroup ref="{http://www.opengis.net/gml/3.2}AssociationAttributeGroup"/> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected JAXBElement<? extends AbstractSurfaceType>abstractSurfaceprotected List<String>nilReasonsprotected Booleanowns
-
Constructor Summary
Constructors Constructor Description SurfaceProperty()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JAXBElement<? extends AbstractSurfaceType>getAbstractSurface()Gets the value of the abstractSurface property.List<String>getNilReasons()Gets the value of the nilReasons property.booleanisOwns()Gets the value of the owns property.voidsetAbstractSurface(JAXBElement<? extends AbstractSurfaceType> value)Sets the value of the abstractSurface property.voidsetOwns(Boolean value)Sets the value of the owns property.
-
-
-
Field Detail
-
abstractSurface
protected JAXBElement<? extends AbstractSurfaceType> abstractSurface
-
owns
protected Boolean owns
-
-
Method Detail
-
getAbstractSurface
public JAXBElement<? extends AbstractSurfaceType> getAbstractSurface()
Gets the value of the abstractSurface property.- Returns:
- possible object is
JAXBElement<PolygonType>JAXBElement<AbstractSurfaceType>
-
setAbstractSurface
public void setAbstractSurface(JAXBElement<? extends AbstractSurfaceType> value)
Sets the value of the abstractSurface property.- Parameters:
value- allowed object isJAXBElement<PolygonType>JAXBElement<AbstractSurfaceType>
-
isOwns
public boolean isOwns()
Gets the value of the owns property.- Returns:
- possible object is
Boolean
-
setOwns
public void setOwns(Boolean value)
Sets the value of the owns property.- Parameters:
value- allowed object isBoolean
-
getNilReasons
public List<String> getNilReasons()
Gets the value of the nilReasons 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 nilReasons property.For example, to add a new item, do as follows:
getNilReasons().add(newItem);Objects of the following type(s) are allowed in the list
String
-
-