com.hubject.datex.energyinfrastructure.generated.common_extension.AgeCharacteristic 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_extension;
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;
import com.hubject.datex.energyinfrastructure.generated.common.ComparisonOperatorEnum;
import com.hubject.datex.energyinfrastructure.generated.common.ExtensionType;
/**
* Java class for AgeCharacteristic complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AgeCharacteristic">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="comparisonOperator" type="{http://datex2.eu/schema/3/common}_ComparisonOperatorEnum"/>
* <element name="yearOfFirstRegistration" type="{http://datex2.eu/schema/3/common}Year"/>
* <element name="_ageCharacteristicExtension" type="{http://datex2.eu/schema/3/common}_ExtensionType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AgeCharacteristic", propOrder = {
"comparisonOperator",
"yearOfFirstRegistration",
"ageCharacteristicExtension"
})
public class AgeCharacteristic {
@XmlElement(required = true)
protected ComparisonOperatorEnum comparisonOperator;
@XmlElement(required = true)
@XmlSchemaType(name = "nonNegativeInteger")
protected BigInteger yearOfFirstRegistration;
@XmlElement(name = "_ageCharacteristicExtension")
protected ExtensionType ageCharacteristicExtension;
/**
* 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 yearOfFirstRegistration property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getYearOfFirstRegistration() {
return yearOfFirstRegistration;
}
/**
* Sets the value of the yearOfFirstRegistration property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setYearOfFirstRegistration(BigInteger value) {
this.yearOfFirstRegistration = value;
}
/**
* Gets the value of the ageCharacteristicExtension property.
*
* @return
* possible object is
* {@link ExtensionType }
*
*/
public ExtensionType getAgeCharacteristicExtension() {
return ageCharacteristicExtension;
}
/**
* Sets the value of the ageCharacteristicExtension property.
*
* @param value
* allowed object is
* {@link ExtensionType }
*
*/
public void setAgeCharacteristicExtension(ExtensionType value) {
this.ageCharacteristicExtension = value;
}
}