Class MeasurementSiteTable
- java.lang.Object
-
- eu.datex2.siri13.schema._1_0._1_0.MeasurementSiteTable
-
- All Implemented Interfaces:
Serializable
public class MeasurementSiteTable extends Object implements Serializable
A Measurement Site Table comprising a number of sets of data, each describing the location from where a stream of measured data may be derived. Each location is known as a "measurement site" which can be a point, a linear road section or an area.Java class for MeasurementSiteTable complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="MeasurementSiteTable"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="measurementSiteTableReference" type="{http://datex2.eu/schema/1_0/1_0}String" minOccurs="0"/> <element name="measurementSiteTableVersion" type="{http://datex2.eu/schema/1_0/1_0}NonNegativeInteger" minOccurs="0"/> <element name="measurementSiteRecord" type="{http://datex2.eu/schema/1_0/1_0}MeasurementSiteRecord" maxOccurs="unbounded"/> <element name="measurementSiteTableExtension" type="{http://datex2.eu/schema/1_0/1_0}ExtensionType" minOccurs="0"/> </sequence> <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" /> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringidprotected List<MeasurementSiteRecord>measurementSiteRecordsprotected ExtensionTypemeasurementSiteTableExtensionprotected StringmeasurementSiteTableReferenceprotected BigIntegermeasurementSiteTableVersion
-
Constructor Summary
Constructors Constructor Description MeasurementSiteTable()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetId()Gets the value of the id property.List<MeasurementSiteRecord>getMeasurementSiteRecords()Gets the value of the measurementSiteRecords property.ExtensionTypegetMeasurementSiteTableExtension()Gets the value of the measurementSiteTableExtension property.StringgetMeasurementSiteTableReference()Gets the value of the measurementSiteTableReference property.BigIntegergetMeasurementSiteTableVersion()Gets the value of the measurementSiteTableVersion property.voidsetId(String value)Sets the value of the id property.voidsetMeasurementSiteTableExtension(ExtensionType value)Sets the value of the measurementSiteTableExtension property.voidsetMeasurementSiteTableReference(String value)Sets the value of the measurementSiteTableReference property.voidsetMeasurementSiteTableVersion(BigInteger value)Sets the value of the measurementSiteTableVersion property.
-
-
-
Field Detail
-
measurementSiteTableReference
protected String measurementSiteTableReference
-
measurementSiteTableVersion
protected BigInteger measurementSiteTableVersion
-
measurementSiteRecords
protected List<MeasurementSiteRecord> measurementSiteRecords
-
measurementSiteTableExtension
protected ExtensionType measurementSiteTableExtension
-
id
protected String id
-
-
Method Detail
-
getMeasurementSiteTableReference
public String getMeasurementSiteTableReference()
Gets the value of the measurementSiteTableReference property.- Returns:
- possible object is
String
-
setMeasurementSiteTableReference
public void setMeasurementSiteTableReference(String value)
Sets the value of the measurementSiteTableReference property.- Parameters:
value- allowed object isString
-
getMeasurementSiteTableVersion
public BigInteger getMeasurementSiteTableVersion()
Gets the value of the measurementSiteTableVersion property.- Returns:
- possible object is
BigInteger
-
setMeasurementSiteTableVersion
public void setMeasurementSiteTableVersion(BigInteger value)
Sets the value of the measurementSiteTableVersion property.- Parameters:
value- allowed object isBigInteger
-
getMeasurementSiteRecords
public List<MeasurementSiteRecord> getMeasurementSiteRecords()
Gets the value of the measurementSiteRecords 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 measurementSiteRecords property.For example, to add a new item, do as follows:
getMeasurementSiteRecords().add(newItem);Objects of the following type(s) are allowed in the list
MeasurementSiteRecord
-
getMeasurementSiteTableExtension
public ExtensionType getMeasurementSiteTableExtension()
Gets the value of the measurementSiteTableExtension property.- Returns:
- possible object is
ExtensionType
-
setMeasurementSiteTableExtension
public void setMeasurementSiteTableExtension(ExtensionType value)
Sets the value of the measurementSiteTableExtension property.- Parameters:
value- allowed object isExtensionType
-
-