Package nl.b3p.csw.jaxb.gml
Class MultiPointType
- 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.MultiPointType
-
public class MultiPointType extends AbstractGeometricAggregateType
A MultiPoint is defined by one or more Points, referenced through pointMember elements.Java class for MultiPointType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="MultiPointType"> <complexContent> <extension base="{http://www.opengis.net/gml}AbstractGeometricAggregateType"> <sequence> <element ref="{http://www.opengis.net/gml}pointMember" maxOccurs="unbounded" minOccurs="0"/> <element ref="{http://www.opengis.net/gml}pointMembers" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<PointMember>pointMemberprotected PointMemberspointMembers-
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 MultiPointType()Default no-arg constructorMultiPointType(List<MetaDataProperty> metaDataProperty, Description description, List<Name> name, String id, String gid, String srsName, BigInteger srsDimension, List<String> axisLabels, List<String> uomLabels, List<PointMember> pointMember, PointMembers pointMembers)Fully-initialising value constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<PointMember>getPointMember()Gets the value of the pointMember property.PointMembersgetPointMembers()Gets the value of the pointMembers property.voidsetPointMembers(PointMembers value)Sets the value of the pointMembers 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
-
pointMember
protected List<PointMember> pointMember
-
pointMembers
protected PointMembers pointMembers
-
-
Constructor Detail
-
MultiPointType
public MultiPointType()
Default no-arg constructor
-
MultiPointType
public MultiPointType(List<MetaDataProperty> metaDataProperty, Description description, List<Name> name, String id, String gid, String srsName, BigInteger srsDimension, List<String> axisLabels, List<String> uomLabels, List<PointMember> pointMember, PointMembers pointMembers)
Fully-initialising value constructor
-
-
Method Detail
-
getPointMember
public List<PointMember> getPointMember()
Gets the value of the pointMember 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 pointMember property.For example, to add a new item, do as follows:
getPointMember().add(newItem);Objects of the following type(s) are allowed in the list
PointMember
-
getPointMembers
public PointMembers getPointMembers()
Gets the value of the pointMembers property.- Returns:
- possible object is
PointMembers
-
setPointMembers
public void setPointMembers(PointMembers value)
Sets the value of the pointMembers property.- Parameters:
value- allowed object isPointMembers
-
-