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

com.hubject.datex.energyinfrastructure.generated.location_referencing.TpegHeight 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.location_referencing;

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 TpegHeight complex type. * *

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

 * <complexType name="TpegHeight">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="height" type="{http://datex2.eu/schema/3/common}MetresAsFloat" minOccurs="0"/>
 *         <element name="heightType" type="{http://datex2.eu/schema/3/locationReferencing}_TpegLoc04HeightTypeEnum"/>
 *         <element name="_tpegHeightExtension" type="{http://datex2.eu/schema/3/common}_ExtensionType" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TpegHeight", propOrder = { "height", "heightType", "tpegHeightExtension" }) public class TpegHeight { protected Float height; @XmlElement(required = true) protected TpegLoc04HeightTypeEnum heightType; @XmlElement(name = "_tpegHeightExtension") protected ExtensionType tpegHeightExtension; /** * Gets the value of the height property. * * @return * possible object is * {@link Float } * */ public Float getHeight() { return height; } /** * Sets the value of the height property. * * @param value * allowed object is * {@link Float } * */ public void setHeight(Float value) { this.height = value; } /** * Gets the value of the heightType property. * * @return * possible object is * {@link TpegLoc04HeightTypeEnum } * */ public TpegLoc04HeightTypeEnum getHeightType() { return heightType; } /** * Sets the value of the heightType property. * * @param value * allowed object is * {@link TpegLoc04HeightTypeEnum } * */ public void setHeightType(TpegLoc04HeightTypeEnum value) { this.heightType = value; } /** * Gets the value of the tpegHeightExtension property. * * @return * possible object is * {@link ExtensionType } * */ public ExtensionType getTpegHeightExtension() { return tpegHeightExtension; } /** * Sets the value of the tpegHeightExtension property. * * @param value * allowed object is * {@link ExtensionType } * */ public void setTpegHeightExtension(ExtensionType value) { this.tpegHeightExtension = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy