com.hubject.datex.energyinfrastructure.generated.common.AxleWeight Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of convert Show documentation
Show all versions of convert Show documentation
Use converters from com.hubject.datex.convert.converters package to convert from the OICP formats to DATEX II TablePublication and StatusPublication.
//
// 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 java.math.BigInteger;
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 AxleWeight complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AxleWeight">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="axlePositionIdentifier" type="{http://datex2.eu/schema/3/common}NonNegativeInteger"/>
* <element name="axleWeight" type="{http://datex2.eu/schema/3/common}Tonnes" minOccurs="0"/>
* <element name="maximumPermittedAxleWeight" type="{http://datex2.eu/schema/3/common}Tonnes" minOccurs="0"/>
* <element name="_axleWeightExtension" type="{http://datex2.eu/schema/3/common}_ExtensionType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AxleWeight", propOrder = {
"axlePositionIdentifier",
"axleWeight",
"maximumPermittedAxleWeight",
"axleWeightExtension"
})
public class AxleWeight {
@XmlElement(required = true)
@XmlSchemaType(name = "nonNegativeInteger")
protected BigInteger axlePositionIdentifier;
protected Float axleWeight;
protected Float maximumPermittedAxleWeight;
@XmlElement(name = "_axleWeightExtension")
protected ExtensionType axleWeightExtension;
/**
* Gets the value of the axlePositionIdentifier property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getAxlePositionIdentifier() {
return axlePositionIdentifier;
}
/**
* Sets the value of the axlePositionIdentifier property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setAxlePositionIdentifier(BigInteger value) {
this.axlePositionIdentifier = value;
}
/**
* Gets the value of the axleWeight property.
*
* @return
* possible object is
* {@link Float }
*
*/
public Float getAxleWeight() {
return axleWeight;
}
/**
* Sets the value of the axleWeight property.
*
* @param value
* allowed object is
* {@link Float }
*
*/
public void setAxleWeight(Float value) {
this.axleWeight = value;
}
/**
* Gets the value of the maximumPermittedAxleWeight property.
*
* @return
* possible object is
* {@link Float }
*
*/
public Float getMaximumPermittedAxleWeight() {
return maximumPermittedAxleWeight;
}
/**
* Sets the value of the maximumPermittedAxleWeight property.
*
* @param value
* allowed object is
* {@link Float }
*
*/
public void setMaximumPermittedAxleWeight(Float value) {
this.maximumPermittedAxleWeight = value;
}
/**
* Gets the value of the axleWeightExtension property.
*
* @return
* possible object is
* {@link ExtensionType }
*
*/
public ExtensionType getAxleWeightExtension() {
return axleWeightExtension;
}
/**
* Sets the value of the axleWeightExtension property.
*
* @param value
* allowed object is
* {@link ExtensionType }
*
*/
public void setAxleWeightExtension(ExtensionType value) {
this.axleWeightExtension = value;
}
}