
eu.datex2.schema._2._2_0.TrafficSpeed 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.XmlType;
/**
* Java class for TrafficSpeed complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="TrafficSpeed">
* <complexContent>
* <extension base="{http://datex2.eu/schema/2/2_0}TrafficData">
* <sequence>
* <element name="averageVehicleSpeed" type="{http://datex2.eu/schema/2/2_0}SpeedValue" minOccurs="0"/>
* <element name="speedPercentile" type="{http://datex2.eu/schema/2/2_0}SpeedPercentile" minOccurs="0"/>
* <element name="trafficSpeedExtension" type="{http://datex2.eu/schema/2/2_0}_ExtensionType" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TrafficSpeed", propOrder = {
"averageVehicleSpeed",
"speedPercentile",
"trafficSpeedExtension"
})
public class TrafficSpeed
extends TrafficData
{
protected SpeedValue averageVehicleSpeed;
protected SpeedPercentile speedPercentile;
protected ExtensionType trafficSpeedExtension;
/**
* Gets the value of the averageVehicleSpeed property.
*
* @return
* possible object is
* {@link SpeedValue }
*
*/
public SpeedValue getAverageVehicleSpeed() {
return averageVehicleSpeed;
}
/**
* Sets the value of the averageVehicleSpeed property.
*
* @param value
* allowed object is
* {@link SpeedValue }
*
*/
public void setAverageVehicleSpeed(SpeedValue value) {
this.averageVehicleSpeed = value;
}
/**
* Gets the value of the speedPercentile property.
*
* @return
* possible object is
* {@link SpeedPercentile }
*
*/
public SpeedPercentile getSpeedPercentile() {
return speedPercentile;
}
/**
* Sets the value of the speedPercentile property.
*
* @param value
* allowed object is
* {@link SpeedPercentile }
*
*/
public void setSpeedPercentile(SpeedPercentile value) {
this.speedPercentile = value;
}
/**
* Gets the value of the trafficSpeedExtension property.
*
* @return
* possible object is
* {@link ExtensionType }
*
*/
public ExtensionType getTrafficSpeedExtension() {
return trafficSpeedExtension;
}
/**
* Sets the value of the trafficSpeedExtension property.
*
* @param value
* allowed object is
* {@link ExtensionType }
*
*/
public void setTrafficSpeedExtension(ExtensionType value) {
this.trafficSpeedExtension = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy