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

eu.datex2.schema._2._2_0.FloatingPointMetreDistanceValue 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.XmlType;


/**
 * 

Java class for FloatingPointMetreDistanceValue complex type. * *

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

 * <complexType name="FloatingPointMetreDistanceValue">
 *   <complexContent>
 *     <extension base="{http://datex2.eu/schema/2/2_0}DataValue">
 *       <sequence>
 *         <element name="floatingPointMetreDistance" type="{http://datex2.eu/schema/2/2_0}MetresAsFloat"/>
 *         <element name="floatingPointMetreDistanceValueExtension" type="{http://datex2.eu/schema/2/2_0}_ExtensionType" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FloatingPointMetreDistanceValue", propOrder = { "floatingPointMetreDistance", "floatingPointMetreDistanceValueExtension" }) public class FloatingPointMetreDistanceValue extends DataValue { protected float floatingPointMetreDistance; protected ExtensionType floatingPointMetreDistanceValueExtension; /** * Gets the value of the floatingPointMetreDistance property. * */ public float getFloatingPointMetreDistance() { return floatingPointMetreDistance; } /** * Sets the value of the floatingPointMetreDistance property. * */ public void setFloatingPointMetreDistance(float value) { this.floatingPointMetreDistance = value; } /** * Gets the value of the floatingPointMetreDistanceValueExtension property. * * @return * possible object is * {@link ExtensionType } * */ public ExtensionType getFloatingPointMetreDistanceValueExtension() { return floatingPointMetreDistanceValueExtension; } /** * Sets the value of the floatingPointMetreDistanceValueExtension property. * * @param value * allowed object is * {@link ExtensionType } * */ public void setFloatingPointMetreDistanceValueExtension(ExtensionType value) { this.floatingPointMetreDistanceValueExtension = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy