Package net.opengis.gml._3
Class MeasureListType
- java.lang.Object
-
- net.opengis.gml._3.MeasureListType
-
- All Implemented Interfaces:
Serializable
public class MeasureListType extends Object implements Serializable
gml:MeasureListType provides for a list of quantities.Java class for MeasureListType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="MeasureListType"> <simpleContent> <extension base="<http://www.opengis.net/gml/3.2>doubleList"> <attribute name="uom" use="required" type="{http://www.opengis.net/gml/3.2}UomIdentifier" /> </extension> </simpleContent> </complexType>- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MeasureListType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetUom()Gets the value of the uom property.List<Double>getValues()A type for a list of values of the respective simple type.Gets the value of the values property.voidsetUom(String value)Sets the value of the uom property.
-
-
-
Method Detail
-
getValues
public List<Double> getValues()
A type for a list of values of the respective simple type.Gets the value of the values 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 values property.For example, to add a new item, do as follows:
getValues().add(newItem);Objects of the following type(s) are allowed in the list
Double
-
getUom
public String getUom()
Gets the value of the uom property.- Returns:
- possible object is
String
-
-