com.hubject.datex.energyinfrastructure.generated.common_extension.VehicleCharacteristicsExtended Maven / Gradle / Ivy
Show all versions of convert Show documentation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.1
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2022.10.06 at 11:44:34 AM CEST
//
package com.hubject.datex.energyinfrastructure.generated.common_extension;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
import com.hubject.datex.energyinfrastructure.generated.common.HazardousMaterials;
/**
* Java class for VehicleCharacteristicsExtended complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VehicleCharacteristicsExtended">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ageCharacteristic" type="{http://datex2.eu/schema/3/commonExtension}AgeCharacteristic" minOccurs="0"/>
* <element name="trailerCharacteristics" type="{http://datex2.eu/schema/3/commonExtension}TrailerCharacteristics" minOccurs="0"/>
* <element name="hazardousMaterials" type="{http://datex2.eu/schema/3/common}HazardousMaterials" minOccurs="0"/>
* <element name="enginePowerCharacteristics" type="{http://datex2.eu/schema/3/commonExtension}EnginePowerCharacteristics" maxOccurs="2" minOccurs="0"/>
* <element name="regulatedCharacteristics" type="{http://datex2.eu/schema/3/commonExtension}RegulatedCharacteristics" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VehicleCharacteristicsExtended", propOrder = {
"ageCharacteristic",
"trailerCharacteristics",
"hazardousMaterials",
"enginePowerCharacteristics",
"regulatedCharacteristics"
})
public class VehicleCharacteristicsExtended {
protected AgeCharacteristic ageCharacteristic;
protected TrailerCharacteristics trailerCharacteristics;
protected HazardousMaterials hazardousMaterials;
protected List enginePowerCharacteristics;
protected List regulatedCharacteristics;
/**
* Gets the value of the ageCharacteristic property.
*
* @return
* possible object is
* {@link AgeCharacteristic }
*
*/
public AgeCharacteristic getAgeCharacteristic() {
return ageCharacteristic;
}
/**
* Sets the value of the ageCharacteristic property.
*
* @param value
* allowed object is
* {@link AgeCharacteristic }
*
*/
public void setAgeCharacteristic(AgeCharacteristic value) {
this.ageCharacteristic = value;
}
/**
* Gets the value of the trailerCharacteristics property.
*
* @return
* possible object is
* {@link TrailerCharacteristics }
*
*/
public TrailerCharacteristics getTrailerCharacteristics() {
return trailerCharacteristics;
}
/**
* Sets the value of the trailerCharacteristics property.
*
* @param value
* allowed object is
* {@link TrailerCharacteristics }
*
*/
public void setTrailerCharacteristics(TrailerCharacteristics value) {
this.trailerCharacteristics = value;
}
/**
* Gets the value of the hazardousMaterials property.
*
* @return
* possible object is
* {@link HazardousMaterials }
*
*/
public HazardousMaterials getHazardousMaterials() {
return hazardousMaterials;
}
/**
* Sets the value of the hazardousMaterials property.
*
* @param value
* allowed object is
* {@link HazardousMaterials }
*
*/
public void setHazardousMaterials(HazardousMaterials value) {
this.hazardousMaterials = value;
}
/**
* Gets the value of the enginePowerCharacteristics 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 set
method for the enginePowerCharacteristics property.
*
*
* For example, to add a new item, do as follows:
*
* getEnginePowerCharacteristics().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link EnginePowerCharacteristics }
*
*
*/
public List getEnginePowerCharacteristics() {
if (enginePowerCharacteristics == null) {
enginePowerCharacteristics = new ArrayList();
}
return this.enginePowerCharacteristics;
}
/**
* Gets the value of the regulatedCharacteristics 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 set
method for the regulatedCharacteristics property.
*
*
* For example, to add a new item, do as follows:
*
* getRegulatedCharacteristics().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link RegulatedCharacteristics }
*
*
*/
public List getRegulatedCharacteristics() {
if (regulatedCharacteristics == null) {
regulatedCharacteristics = new ArrayList();
}
return this.regulatedCharacteristics;
}
}