
eu.datex2.schema._2._2_0.VehicleFlowValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datex2-api Show documentation
Show all versions of datex2-api Show documentation
DATEX II API for Java, allows to create DATEX II suppliers and clients.
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.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.w3._2001.xmlschema.Adapter2;
/**
* Java class for VehicleFlowValue complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VehicleFlowValue">
* <complexContent>
* <extension base="{http://datex2.eu/schema/2/2_0}DataValue">
* <sequence>
* <element name="vehicleFlowRate" type="{http://datex2.eu/schema/2/2_0}VehiclesPerHour"/>
* <element name="vehicleFlowValueExtension" type="{http://datex2.eu/schema/2/2_0}_ExtensionType" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VehicleFlowValue", propOrder = {
"vehicleFlowRate",
"vehicleFlowValueExtension"
})
public class VehicleFlowValue
extends DataValue
{
@XmlElement(required = true, type = String.class)
@XmlJavaTypeAdapter(Adapter2 .class)
@XmlSchemaType(name = "nonNegativeInteger")
protected Long vehicleFlowRate;
protected ExtensionType vehicleFlowValueExtension;
/**
* Gets the value of the vehicleFlowRate property.
*
* @return
* possible object is
* {@link String }
*
*/
public Long getVehicleFlowRate() {
return vehicleFlowRate;
}
/**
* Sets the value of the vehicleFlowRate property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVehicleFlowRate(Long value) {
this.vehicleFlowRate = value;
}
/**
* Gets the value of the vehicleFlowValueExtension property.
*
* @return
* possible object is
* {@link ExtensionType }
*
*/
public ExtensionType getVehicleFlowValueExtension() {
return vehicleFlowValueExtension;
}
/**
* Sets the value of the vehicleFlowValueExtension property.
*
* @param value
* allowed object is
* {@link ExtensionType }
*
*/
public void setVehicleFlowValueExtension(ExtensionType value) {
this.vehicleFlowValueExtension = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy