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

eu.datex2.schema._2._2_0.DirectionCompassValue 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 DirectionCompassValue complex type. * *

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

 * <complexType name="DirectionCompassValue">
 *   <complexContent>
 *     <extension base="{http://datex2.eu/schema/2/2_0}DataValue">
 *       <sequence>
 *         <element name="directionCompass" type="{http://datex2.eu/schema/2/2_0}DirectionCompassEnum"/>
 *         <element name="directionCompassValueExtension" type="{http://datex2.eu/schema/2/2_0}_ExtensionType" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DirectionCompassValue", propOrder = { "directionCompass", "directionCompassValueExtension" }) public class DirectionCompassValue extends DataValue { @XmlElement(required = true) @XmlSchemaType(name = "string") protected DirectionCompassEnum directionCompass; protected ExtensionType directionCompassValueExtension; /** * Gets the value of the directionCompass property. * * @return * possible object is * {@link DirectionCompassEnum } * */ public DirectionCompassEnum getDirectionCompass() { return directionCompass; } /** * Sets the value of the directionCompass property. * * @param value * allowed object is * {@link DirectionCompassEnum } * */ public void setDirectionCompass(DirectionCompassEnum value) { this.directionCompass = value; } /** * Gets the value of the directionCompassValueExtension property. * * @return * possible object is * {@link ExtensionType } * */ public ExtensionType getDirectionCompassValueExtension() { return directionCompassValueExtension; } /** * Sets the value of the directionCompassValueExtension property. * * @param value * allowed object is * {@link ExtensionType } * */ public void setDirectionCompassValueExtension(ExtensionType value) { this.directionCompassValueExtension = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy