Package net.opengis.gml._3
Class LinearRingType
- java.lang.Object
-
- net.opengis.gml._3.AbstractRingType
-
- net.opengis.gml._3.LinearRingType
-
- All Implemented Interfaces:
Serializable
public class LinearRingType extends AbstractRingType implements Serializable
Java class for LinearRingType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="LinearRingType"> <complexContent> <extension base="{http://www.opengis.net/gml/3.2}AbstractRingType"> <sequence> <choice> <choice maxOccurs="unbounded" minOccurs="4"> <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
-
Constructor Summary
Constructors Constructor Description LinearRingType()
-
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.
-
-
-
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
-
-