Package nl.b3p.csw.jaxb.gml
Class PolygonPatchType
- java.lang.Object
-
- nl.b3p.csw.jaxb.gml.AbstractSurfacePatchType
-
- nl.b3p.csw.jaxb.gml.PolygonPatchType
-
public class PolygonPatchType extends AbstractSurfacePatchType
A PolygonPatch is a surface patch that is defined by a set of boundary curves and an underlying surface to which these curves adhere. The curves are coplanar and the polygon uses planar interpolation in its interior. Implements GM_Polygon of ISO 19107.Java class for PolygonPatchType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="PolygonPatchType"> <complexContent> <extension base="{http://www.opengis.net/gml}AbstractSurfacePatchType"> <sequence> <element ref="{http://www.opengis.net/gml}exterior" minOccurs="0"/> <element ref="{http://www.opengis.net/gml}interior" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="interpolation" type="{http://www.opengis.net/gml}SurfaceInterpolationType" fixed="planar" /> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected javax.xml.bind.JAXBElement<AbstractRingPropertyType>exteriorprotected List<javax.xml.bind.JAXBElement<AbstractRingPropertyType>>interiorprotected SurfaceInterpolationTypeinterpolation
-
Constructor Summary
Constructors Constructor Description PolygonPatchType()Default no-arg constructorPolygonPatchType(javax.xml.bind.JAXBElement<AbstractRingPropertyType> exterior, List<javax.xml.bind.JAXBElement<AbstractRingPropertyType>> interior, SurfaceInterpolationType interpolation)Fully-initialising value constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.xml.bind.JAXBElement<AbstractRingPropertyType>getExterior()Gets the value of the exterior property.List<javax.xml.bind.JAXBElement<AbstractRingPropertyType>>getInterior()Gets the value of the interior property.SurfaceInterpolationTypegetInterpolation()Gets the value of the interpolation property.voidsetExterior(javax.xml.bind.JAXBElement<AbstractRingPropertyType> value)Sets the value of the exterior property.voidsetInterpolation(SurfaceInterpolationType value)Sets the value of the interpolation property.
-
-
-
Field Detail
-
exterior
protected javax.xml.bind.JAXBElement<AbstractRingPropertyType> exterior
-
interior
protected List<javax.xml.bind.JAXBElement<AbstractRingPropertyType>> interior
-
interpolation
protected SurfaceInterpolationType interpolation
-
-
Constructor Detail
-
PolygonPatchType
public PolygonPatchType()
Default no-arg constructor
-
PolygonPatchType
public PolygonPatchType(javax.xml.bind.JAXBElement<AbstractRingPropertyType> exterior, List<javax.xml.bind.JAXBElement<AbstractRingPropertyType>> interior, SurfaceInterpolationType interpolation)
Fully-initialising value constructor
-
-
Method Detail
-
getExterior
public javax.xml.bind.JAXBElement<AbstractRingPropertyType> getExterior()
Gets the value of the exterior property.- Returns:
- possible object is
OuterBoundaryIsExterior
-
setExterior
public void setExterior(javax.xml.bind.JAXBElement<AbstractRingPropertyType> value)
Sets the value of the exterior property.- Parameters:
value- allowed object isOuterBoundaryIsExterior
-
getInterior
public List<javax.xml.bind.JAXBElement<AbstractRingPropertyType>> getInterior()
Gets the value of the interior 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 interior property.For example, to add a new item, do as follows:
getInterior().add(newItem);Objects of the following type(s) are allowed in the list
InnerBoundaryIsInterior
-
getInterpolation
public SurfaceInterpolationType getInterpolation()
Gets the value of the interpolation property.- Returns:
- possible object is
SurfaceInterpolationType
-
setInterpolation
public void setInterpolation(SurfaceInterpolationType value)
Sets the value of the interpolation property.- Parameters:
value- allowed object isSurfaceInterpolationType
-
-