Package nl.b3p.csw.jaxb.gml
Class LineStringSegmentArrayPropertyType
- java.lang.Object
-
- nl.b3p.csw.jaxb.gml.LineStringSegmentArrayPropertyType
-
public class LineStringSegmentArrayPropertyType extends Object
Java class for LineStringSegmentArrayPropertyType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="LineStringSegmentArrayPropertyType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{http://www.opengis.net/gml}LineStringSegment" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<LineStringSegment>lineStringSegment
-
Constructor Summary
Constructors Constructor Description LineStringSegmentArrayPropertyType()Default no-arg constructorLineStringSegmentArrayPropertyType(List<LineStringSegment> lineStringSegment)Fully-initialising value constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<LineStringSegment>getLineStringSegment()Gets the value of the lineStringSegment property.
-
-
-
Field Detail
-
lineStringSegment
protected List<LineStringSegment> lineStringSegment
-
-
Constructor Detail
-
LineStringSegmentArrayPropertyType
public LineStringSegmentArrayPropertyType()
Default no-arg constructor
-
LineStringSegmentArrayPropertyType
public LineStringSegmentArrayPropertyType(List<LineStringSegment> lineStringSegment)
Fully-initialising value constructor
-
-
Method Detail
-
getLineStringSegment
public List<LineStringSegment> getLineStringSegment()
Gets the value of the lineStringSegment 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 lineStringSegment property.For example, to add a new item, do as follows:
getLineStringSegment().add(newItem);Objects of the following type(s) are allowed in the list
LineStringSegment
-
-