All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eu.datex2.schema._2._2_0.SiteMeasurementsIndexMeasuredValue Maven / Gradle / Ivy

The newest version!

package eu.datex2.schema._2._2_0;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for _SiteMeasurementsIndexMeasuredValue complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="_SiteMeasurementsIndexMeasuredValue">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="measuredValue" type="{http://datex2.eu/schema/2/2_0}MeasuredValue"/>
 *       </sequence>
 *       <attribute name="index" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "_SiteMeasurementsIndexMeasuredValue", propOrder = { "measuredValue" }) public class SiteMeasurementsIndexMeasuredValue { @XmlElement(required = true) protected MeasuredValue measuredValue; @XmlAttribute(name = "index", required = true) protected int index; /** * Gets the value of the measuredValue property. * * @return * possible object is * {@link MeasuredValue } * */ public MeasuredValue getMeasuredValue() { return measuredValue; } /** * Sets the value of the measuredValue property. * * @param value * allowed object is * {@link MeasuredValue } * */ public void setMeasuredValue(MeasuredValue value) { this.measuredValue = value; } /** * Gets the value of the index property. * */ public int getIndex() { return index; } /** * Sets the value of the index property. * */ public void setIndex(int value) { this.index = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy