com.hubject.datex.energyinfrastructure.generated.common.LengthCharacteristic Maven / Gradle / Ivy
//
// 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.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for LengthCharacteristic complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="LengthCharacteristic">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="comparisonOperator" type="{http://datex2.eu/schema/3/common}_ComparisonOperatorEnum"/>
* <element name="vehicleLength" type="{http://datex2.eu/schema/3/common}MetresAsFloat"/>
* <element name="_lengthCharacteristicExtension" type="{http://datex2.eu/schema/3/common}_ExtensionType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LengthCharacteristic", propOrder = {
"comparisonOperator",
"vehicleLength",
"lengthCharacteristicExtension"
})
public class LengthCharacteristic {
@XmlElement(required = true)
protected ComparisonOperatorEnum comparisonOperator;
protected float vehicleLength;
@XmlElement(name = "_lengthCharacteristicExtension")
protected ExtensionType lengthCharacteristicExtension;
/**
* Gets the value of the comparisonOperator property.
*
* @return
* possible object is
* {@link ComparisonOperatorEnum }
*
*/
public ComparisonOperatorEnum getComparisonOperator() {
return comparisonOperator;
}
/**
* Sets the value of the comparisonOperator property.
*
* @param value
* allowed object is
* {@link ComparisonOperatorEnum }
*
*/
public void setComparisonOperator(ComparisonOperatorEnum value) {
this.comparisonOperator = value;
}
/**
* Gets the value of the vehicleLength property.
*
*/
public float getVehicleLength() {
return vehicleLength;
}
/**
* Sets the value of the vehicleLength property.
*
*/
public void setVehicleLength(float value) {
this.vehicleLength = value;
}
/**
* Gets the value of the lengthCharacteristicExtension property.
*
* @return
* possible object is
* {@link ExtensionType }
*
*/
public ExtensionType getLengthCharacteristicExtension() {
return lengthCharacteristicExtension;
}
/**
* Sets the value of the lengthCharacteristicExtension property.
*
* @param value
* allowed object is
* {@link ExtensionType }
*
*/
public void setLengthCharacteristicExtension(ExtensionType value) {
this.lengthCharacteristicExtension = value;
}
}