Class ElaboratedData
- java.lang.Object
-
- eu.datex2.siri13.schema._1_0._1_0.ElaboratedData
-
- All Implemented Interfaces:
Serializable
public class ElaboratedData extends Object implements Serializable
An identifiable instance of data which is derived/computed from one or more measurements over a period of time. It may be a current value or a forecast value predicted from historical measurements.Java class for ElaboratedData complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ElaboratedData"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="forecast" type="{http://datex2.eu/schema/1_0/1_0}Boolean" minOccurs="0"/> <element name="sourceInformation" type="{http://datex2.eu/schema/1_0/1_0}SourceInformation" minOccurs="0"/> <element name="validity" type="{http://datex2.eu/schema/1_0/1_0}Validity" minOccurs="0"/> <element name="basicDataValue" type="{http://datex2.eu/schema/1_0/1_0}BasicDataValue"/> <element name="elaboratedDataExtension" 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 BasicDataValuebasicDataValueprotected ExtensionTypeelaboratedDataExtensionprotected Booleanforecastprotected Stringidprotected SourceInformationsourceInformationprotected Validityvalidity
-
Constructor Summary
Constructors Constructor Description ElaboratedData()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BasicDataValuegetBasicDataValue()Gets the value of the basicDataValue property.ExtensionTypegetElaboratedDataExtension()Gets the value of the elaboratedDataExtension property.StringgetId()Gets the value of the id property.SourceInformationgetSourceInformation()Gets the value of the sourceInformation property.ValiditygetValidity()Gets the value of the validity property.BooleanisForecast()Gets the value of the forecast property.voidsetBasicDataValue(BasicDataValue value)Sets the value of the basicDataValue property.voidsetElaboratedDataExtension(ExtensionType value)Sets the value of the elaboratedDataExtension property.voidsetForecast(Boolean value)Sets the value of the forecast property.voidsetId(String value)Sets the value of the id property.voidsetSourceInformation(SourceInformation value)Sets the value of the sourceInformation property.voidsetValidity(Validity value)Sets the value of the validity property.
-
-
-
Field Detail
-
forecast
protected Boolean forecast
-
sourceInformation
protected SourceInformation sourceInformation
-
validity
protected Validity validity
-
basicDataValue
protected BasicDataValue basicDataValue
-
elaboratedDataExtension
protected ExtensionType elaboratedDataExtension
-
id
protected String id
-
-
Method Detail
-
isForecast
public Boolean isForecast()
Gets the value of the forecast property.- Returns:
- possible object is
Boolean
-
setForecast
public void setForecast(Boolean value)
Sets the value of the forecast property.- Parameters:
value- allowed object isBoolean
-
getSourceInformation
public SourceInformation getSourceInformation()
Gets the value of the sourceInformation property.- Returns:
- possible object is
SourceInformation
-
setSourceInformation
public void setSourceInformation(SourceInformation value)
Sets the value of the sourceInformation property.- Parameters:
value- allowed object isSourceInformation
-
getValidity
public Validity getValidity()
Gets the value of the validity property.- Returns:
- possible object is
Validity
-
setValidity
public void setValidity(Validity value)
Sets the value of the validity property.- Parameters:
value- allowed object isValidity
-
getBasicDataValue
public BasicDataValue getBasicDataValue()
Gets the value of the basicDataValue property.- Returns:
- possible object is
BasicDataValue
-
setBasicDataValue
public void setBasicDataValue(BasicDataValue value)
Sets the value of the basicDataValue property.- Parameters:
value- allowed object isBasicDataValue
-
getElaboratedDataExtension
public ExtensionType getElaboratedDataExtension()
Gets the value of the elaboratedDataExtension property.- Returns:
- possible object is
ExtensionType
-
setElaboratedDataExtension
public void setElaboratedDataExtension(ExtensionType value)
Sets the value of the elaboratedDataExtension property.- Parameters:
value- allowed object isExtensionType
-
-