com.hubject.datex.energyinfrastructure.generated.infrastructure.ElectricEnergySourceRatio Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of convert Show documentation
Show all versions of convert Show documentation
Use converters from com.hubject.datex.convert.converters package to convert from the OICP formats to DATEX II TablePublication and StatusPublication.
//
// 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 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.PercentageValue;
/**
* Java class for ElectricEnergySourceRatio complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ElectricEnergySourceRatio">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="energySource" type="{http://datex2.eu/schema/3/energyInfrastructure}_ElectricEnergySourceTypeEnum"/>
* <element name="otherEnergySource" type="{http://datex2.eu/schema/3/common}String" minOccurs="0"/>
* <element name="sourceRatioValue" type="{http://datex2.eu/schema/3/common}PercentageValue"/>
* <element name="_electricEnergySourceRatioExtension" type="{http://datex2.eu/schema/3/common}_ExtensionType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ElectricEnergySourceRatio", propOrder = {
"energySource",
"otherEnergySource",
"sourceRatioValue",
"electricEnergySourceRatioExtension"
})
public class ElectricEnergySourceRatio {
@XmlElement(required = true)
protected ElectricEnergySourceTypeEnum energySource;
protected String otherEnergySource;
@XmlElement(required = true)
protected PercentageValue sourceRatioValue;
@XmlElement(name = "_electricEnergySourceRatioExtension")
protected ExtensionType electricEnergySourceRatioExtension;
/**
* Gets the value of the energySource property.
*
* @return
* possible object is
* {@link ElectricEnergySourceTypeEnum }
*
*/
public ElectricEnergySourceTypeEnum getEnergySource() {
return energySource;
}
/**
* Sets the value of the energySource property.
*
* @param value
* allowed object is
* {@link ElectricEnergySourceTypeEnum }
*
*/
public void setEnergySource(ElectricEnergySourceTypeEnum value) {
this.energySource = value;
}
/**
* Gets the value of the otherEnergySource property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOtherEnergySource() {
return otherEnergySource;
}
/**
* Sets the value of the otherEnergySource property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOtherEnergySource(String value) {
this.otherEnergySource = value;
}
/**
* Gets the value of the sourceRatioValue property.
*
* @return
* possible object is
* {@link PercentageValue }
*
*/
public PercentageValue getSourceRatioValue() {
return sourceRatioValue;
}
/**
* Sets the value of the sourceRatioValue property.
*
* @param value
* allowed object is
* {@link PercentageValue }
*
*/
public void setSourceRatioValue(PercentageValue value) {
this.sourceRatioValue = value;
}
/**
* Gets the value of the electricEnergySourceRatioExtension property.
*
* @return
* possible object is
* {@link ExtensionType }
*
*/
public ExtensionType getElectricEnergySourceRatioExtension() {
return electricEnergySourceRatioExtension;
}
/**
* Sets the value of the electricEnergySourceRatioExtension property.
*
* @param value
* allowed object is
* {@link ExtensionType }
*
*/
public void setElectricEnergySourceRatioExtension(ExtensionType value) {
this.electricEnergySourceRatioExtension = value;
}
}