Package nl.b3p.csw.jaxb.gml
Class MultiPolygonType
- java.lang.Object
-
- nl.b3p.csw.jaxb.gml.AbstractGMLType
-
- nl.b3p.csw.jaxb.gml.AbstractGeometryType
-
- nl.b3p.csw.jaxb.gml.AbstractGeometricAggregateType
-
- nl.b3p.csw.jaxb.gml.MultiPolygonType
-
public class MultiPolygonType extends AbstractGeometricAggregateType
A MultiPolygon is defined by one or more Polygons, referenced through polygonMember elements. Deprecated with GML version 3.0. Use MultiSurfaceType instead.Java class for MultiPolygonType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="MultiPolygonType"> <complexContent> <extension base="{http://www.opengis.net/gml}AbstractGeometricAggregateType"> <sequence> <element ref="{http://www.opengis.net/gml}polygonMember" maxOccurs="unbounded" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<PolygonMember>polygonMember-
Fields inherited from class nl.b3p.csw.jaxb.gml.AbstractGeometryType
axisLabels, gid, srsDimension, srsName, uomLabels
-
Fields inherited from class nl.b3p.csw.jaxb.gml.AbstractGMLType
description, id, metaDataProperty, name
-
-
Constructor Summary
Constructors Constructor Description MultiPolygonType()Default no-arg constructorMultiPolygonType(List<MetaDataProperty> metaDataProperty, Description description, List<Name> name, String id, String gid, String srsName, BigInteger srsDimension, List<String> axisLabels, List<String> uomLabels, List<PolygonMember> polygonMember)Fully-initialising value constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<PolygonMember>getPolygonMember()Gets the value of the polygonMember property.-
Methods inherited from class nl.b3p.csw.jaxb.gml.AbstractGeometryType
getAxisLabels, getGid, getSrsDimension, getSrsName, getUomLabels, setGid, setSrsDimension, setSrsName
-
Methods inherited from class nl.b3p.csw.jaxb.gml.AbstractGMLType
getDescription, getId, getMetaDataProperty, getName, setDescription, setId
-
-
-
-
Field Detail
-
polygonMember
protected List<PolygonMember> polygonMember
-
-
Constructor Detail
-
MultiPolygonType
public MultiPolygonType()
Default no-arg constructor
-
MultiPolygonType
public MultiPolygonType(List<MetaDataProperty> metaDataProperty, Description description, List<Name> name, String id, String gid, String srsName, BigInteger srsDimension, List<String> axisLabels, List<String> uomLabels, List<PolygonMember> polygonMember)
Fully-initialising value constructor
-
-
Method Detail
-
getPolygonMember
public List<PolygonMember> getPolygonMember()
Gets the value of the polygonMember 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 polygonMember property.For example, to add a new item, do as follows:
getPolygonMember().add(newItem);Objects of the following type(s) are allowed in the list
PolygonMember
-
-