![JAR search and dependency download from the Maven repository](/logo.png)
com.hubject.datex.energyinfrastructure.generated.infrastructure.ElectricChargingPoint 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.infrastructure;
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;
/**
* Java class for ElectricChargingPoint complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ElectricChargingPoint">
* <complexContent>
* <extension base="{http://datex2.eu/schema/3/energyInfrastructure}RefillPoint">
* <sequence>
* <element name="availableVoltage" type="{http://datex2.eu/schema/3/energyInfrastructure}Volt" maxOccurs="unbounded" minOccurs="0"/>
* <element name="availableChargingPower" type="{http://datex2.eu/schema/3/energyInfrastructure}Watt" maxOccurs="unbounded" minOccurs="0"/>
* <element name="connector" type="{http://datex2.eu/schema/3/energyInfrastructure}Connector" maxOccurs="unbounded" minOccurs="0"/>
* <element name="electricEnergyMix" type="{http://datex2.eu/schema/3/energyInfrastructure}ElectricEnergyMix" maxOccurs="unbounded" minOccurs="0"/>
* <element name="_electricChargingPointExtension" type="{http://datex2.eu/schema/3/common}_ExtensionType" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ElectricChargingPoint", propOrder = {
"availableVoltage",
"availableChargingPower",
"connector",
"electricEnergyMix",
"electricChargingPointExtension"
})
public class ElectricChargingPoint
extends RefillPoint
{
@XmlElement(type = Float.class)
protected List availableVoltage;
@XmlElement(type = Float.class)
protected List availableChargingPower;
protected List connector;
protected List electricEnergyMix;
@XmlElement(name = "_electricChargingPointExtension")
protected ExtensionType electricChargingPointExtension;
/**
* Gets the value of the availableVoltage 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 availableVoltage property.
*
*
* For example, to add a new item, do as follows:
*
* getAvailableVoltage().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Float }
*
*
*/
public List getAvailableVoltage() {
if (availableVoltage == null) {
availableVoltage = new ArrayList();
}
return this.availableVoltage;
}
/**
* Gets the value of the availableChargingPower 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 availableChargingPower property.
*
*
* For example, to add a new item, do as follows:
*
* getAvailableChargingPower().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Float }
*
*
*/
public List getAvailableChargingPower() {
if (availableChargingPower == null) {
availableChargingPower = new ArrayList();
}
return this.availableChargingPower;
}
/**
* Gets the value of the connector 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 connector property.
*
*
* For example, to add a new item, do as follows:
*
* getConnector().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Connector }
*
*
*/
public List getConnector() {
if (connector == null) {
connector = new ArrayList();
}
return this.connector;
}
/**
* Gets the value of the electricEnergyMix 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 electricEnergyMix property.
*
*
* For example, to add a new item, do as follows:
*
* getElectricEnergyMix().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ElectricEnergyMix }
*
*
*/
public List getElectricEnergyMix() {
if (electricEnergyMix == null) {
electricEnergyMix = new ArrayList();
}
return this.electricEnergyMix;
}
/**
* Gets the value of the electricChargingPointExtension property.
*
* @return
* possible object is
* {@link ExtensionType }
*
*/
public ExtensionType getElectricChargingPointExtension() {
return electricChargingPointExtension;
}
/**
* Sets the value of the electricChargingPointExtension property.
*
* @param value
* allowed object is
* {@link ExtensionType }
*
*/
public void setElectricChargingPointExtension(ExtensionType value) {
this.electricChargingPointExtension = value;
}
}