![JAR search and dependency download from the Maven repository](/logo.png)
io.github.oliviercailloux.xmcda_2_2_1_jaxb.X2Quantitative Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xmcda-2.2.1-jaxb Show documentation
Show all versions of xmcda-2.2.1-jaxb Show documentation
Java source for (un)marshalling XMCDA-2.2.1 files, JAXB-generated from the schema.
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2016.11.10 at 09:49:41 PM CET
//
package io.github.oliviercailloux.xmcda_2_2_1_jaxb;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Represents a scale type which is quantitative. It is described by a preference direction (min or max), and a minimal and maximal quantitative evaluation.
*
* Java class for quantitative complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="quantitative">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="preferenceDirection" type="{http://www.decision-deck.org/2012/XMCDA-2.2.1}preferenceDirection" minOccurs="0"/>
* <element name="minimum" type="{http://www.decision-deck.org/2012/XMCDA-2.2.1}numericValue" minOccurs="0"/>
* <element name="maximum" type="{http://www.decision-deck.org/2012/XMCDA-2.2.1}numericValue" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "quantitative", propOrder = {
"preferenceDirection",
"minimum",
"maximum"
})
public class X2Quantitative {
@XmlSchemaType(name = "string")
protected X2PreferenceDirection preferenceDirection;
protected X2NumericValue minimum;
protected X2NumericValue maximum;
/**
* Gets the value of the preferenceDirection property.
*
* @return
* possible object is
* {@link X2PreferenceDirection }
*
*/
public X2PreferenceDirection getPreferenceDirection() {
return preferenceDirection;
}
/**
* Sets the value of the preferenceDirection property.
*
* @param value
* allowed object is
* {@link X2PreferenceDirection }
*
*/
public void setPreferenceDirection(X2PreferenceDirection value) {
this.preferenceDirection = value;
}
/**
* Gets the value of the minimum property.
*
* @return
* possible object is
* {@link X2NumericValue }
*
*/
public X2NumericValue getMinimum() {
return minimum;
}
/**
* Sets the value of the minimum property.
*
* @param value
* allowed object is
* {@link X2NumericValue }
*
*/
public void setMinimum(X2NumericValue value) {
this.minimum = value;
}
/**
* Gets the value of the maximum property.
*
* @return
* possible object is
* {@link X2NumericValue }
*
*/
public X2NumericValue getMaximum() {
return maximum;
}
/**
* Sets the value of the maximum property.
*
* @param value
* allowed object is
* {@link X2NumericValue }
*
*/
public void setMaximum(X2NumericValue value) {
this.maximum = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy