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

eu.datex2.schema._2._2_0.TpegHeight Maven / Gradle / Ivy

The newest version!

package eu.datex2.schema._2._2_0;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

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/2/2_0}MetresAsFloat" minOccurs="0"/>
 *         <element name="heightType" type="{http://datex2.eu/schema/2/2_0}TpegLoc04HeightTypeEnum"/>
 *         <element name="tpegHeightExtension" type="{http://datex2.eu/schema/2/2_0}_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) @XmlSchemaType(name = "string") protected TpegLoc04HeightTypeEnum heightType; 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 - 2025 Weber Informatics LLC | Privacy Policy