Package net.opengis.gml._3
Class LineStringType
-
- All Implemented Interfaces:
Serializable
public class LineStringType extends AbstractCurveType implements Serializable
Java class for LineStringType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="LineStringType"> <complexContent> <extension base="{http://www.opengis.net/gml/3.2}AbstractCurveType"> <sequence> <choice> <choice maxOccurs="unbounded" minOccurs="2"> <element ref="{http://www.opengis.net/gml/3.2}pos"/> <element ref="{http://www.opengis.net/gml/3.2}pointProperty"/> </choice> <element ref="{http://www.opengis.net/gml/3.2}posList"/> </choice> </sequence> </extension> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected List<Serializable>posAndPointPropertiesprotected PosListposList-
Fields inherited from class net.opengis.gml._3.AbstractGeometryType
srsDimension, srsName
-
Fields inherited from class net.opengis.gml._3.AbstractGMLType
descriptionReference, id, identifier, names
-
-
Constructor Summary
Constructors Constructor Description LineStringType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Serializable>getPosAndPointProperties()Gets the value of the posAndPointProperties property.PosListgetPosList()Gets the value of the posList property.voidsetPosList(PosList value)Sets the value of the posList property.-
Methods inherited from class net.opengis.gml._3.AbstractGeometryType
getSrsDimension, getSrsName, setSrsDimension, setSrsName
-
Methods inherited from class net.opengis.gml._3.AbstractGMLType
getDescriptionReference, getId, getIdentifier, getNames, setDescriptionReference, setId, setIdentifier
-
-
-
-
Field Detail
-
posList
protected PosList posList
-
posAndPointProperties
protected List<Serializable> posAndPointProperties
-
-
Method Detail
-
getPosList
public PosList getPosList()
Gets the value of the posList property.- Returns:
- possible object is
PosList
-
setPosList
public void setPosList(PosList value)
Sets the value of the posList property.- Parameters:
value- allowed object isPosList
-
getPosAndPointProperties
public List<Serializable> getPosAndPointProperties()
Gets the value of the posAndPointProperties 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 Jakarta XML Binding object. This is why there is not a
setmethod for the posAndPointProperties property.For example, to add a new item, do as follows:
getPosAndPointProperties().add(newItem);Objects of the following type(s) are allowed in the list
DirectPositionTypePointProperty
-
-