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

com.hubject.datex.energyinfrastructure.generated.common_extension.RegulatedCharacteristics Maven / Gradle / Ivy

Go to download

Use converters from com.hubject.datex.convert.converters package to convert from the OICP formats to DATEX II TablePublication and StatusPublication.

There is a newer version: 1.0.2
Show newest version
//
// 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.XmlElement;
import javax.xml.bind.annotation.XmlType;
import com.hubject.datex.energyinfrastructure.generated.common.ExtensionType;
import com.hubject.datex.energyinfrastructure.generated.common.MultilingualString;


/**
 * 

Java class for RegulatedCharacteristics complex type. * *

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

 * <complexType name="RegulatedCharacteristics">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="euVehicleCategory" type="{http://datex2.eu/schema/3/commonExtension}_EuVehicleCategoryEnum" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="euSpecialPurposeVehicle" type="{http://datex2.eu/schema/3/commonExtension}_EuSpecialPurposeVehicleEnum" minOccurs="0"/>
 *         <element name="nationalSpecialPurposeVehicle" type="{http://datex2.eu/schema/3/common}MultilingualString" minOccurs="0"/>
 *         <element name="_regulatedCharacteristicsExtension" type="{http://datex2.eu/schema/3/common}_ExtensionType" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RegulatedCharacteristics", propOrder = { "euVehicleCategory", "euSpecialPurposeVehicle", "nationalSpecialPurposeVehicle", "regulatedCharacteristicsExtension" }) public class RegulatedCharacteristics { protected List euVehicleCategory; protected EuSpecialPurposeVehicleEnum euSpecialPurposeVehicle; protected MultilingualString nationalSpecialPurposeVehicle; @XmlElement(name = "_regulatedCharacteristicsExtension") protected ExtensionType regulatedCharacteristicsExtension; /** * Gets the value of the euVehicleCategory 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 euVehicleCategory property. * *

* For example, to add a new item, do as follows: *

     *    getEuVehicleCategory().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link EuVehicleCategoryEnum } * * */ public List getEuVehicleCategory() { if (euVehicleCategory == null) { euVehicleCategory = new ArrayList(); } return this.euVehicleCategory; } /** * Gets the value of the euSpecialPurposeVehicle property. * * @return * possible object is * {@link EuSpecialPurposeVehicleEnum } * */ public EuSpecialPurposeVehicleEnum getEuSpecialPurposeVehicle() { return euSpecialPurposeVehicle; } /** * Sets the value of the euSpecialPurposeVehicle property. * * @param value * allowed object is * {@link EuSpecialPurposeVehicleEnum } * */ public void setEuSpecialPurposeVehicle(EuSpecialPurposeVehicleEnum value) { this.euSpecialPurposeVehicle = value; } /** * Gets the value of the nationalSpecialPurposeVehicle property. * * @return * possible object is * {@link MultilingualString } * */ public MultilingualString getNationalSpecialPurposeVehicle() { return nationalSpecialPurposeVehicle; } /** * Sets the value of the nationalSpecialPurposeVehicle property. * * @param value * allowed object is * {@link MultilingualString } * */ public void setNationalSpecialPurposeVehicle(MultilingualString value) { this.nationalSpecialPurposeVehicle = value; } /** * Gets the value of the regulatedCharacteristicsExtension property. * * @return * possible object is * {@link ExtensionType } * */ public ExtensionType getRegulatedCharacteristicsExtension() { return regulatedCharacteristicsExtension; } /** * Sets the value of the regulatedCharacteristicsExtension property. * * @param value * allowed object is * {@link ExtensionType } * */ public void setRegulatedCharacteristicsExtension(ExtensionType value) { this.regulatedCharacteristicsExtension = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy