public class Qualitative extends Object
Java class for qualitative complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="qualitative">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="description" type="{http://www.decision-deck.org/2019/XMCDA-2.2.3}description" minOccurs="0"/>
<element name="preferenceDirection" type="{http://www.decision-deck.org/2019/XMCDA-2.2.3}preferenceDirection" minOccurs="0"/>
<choice>
<element name="rankedLabel" type="{http://www.decision-deck.org/2019/XMCDA-2.2.3}rankedLabel" maxOccurs="unbounded"/>
<element name="fuzzyLabel" type="{http://www.decision-deck.org/2019/XMCDA-2.2.3}fuzzyLabel" maxOccurs="unbounded"/>
</choice>
</sequence>
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected Description |
description |
protected List<FuzzyLabel> |
fuzzyLabel |
protected PreferenceDirection |
preferenceDirection |
protected List<RankedLabel> |
rankedLabel |
| Constructor and Description |
|---|
Qualitative() |
| Modifier and Type | Method and Description |
|---|---|
Description |
getDescription()
Gets the value of the description property.
|
List<FuzzyLabel> |
getFuzzyLabel()
Gets the value of the fuzzyLabel property.
|
PreferenceDirection |
getPreferenceDirection()
Gets the value of the preferenceDirection property.
|
List<RankedLabel> |
getRankedLabel()
Gets the value of the rankedLabel property.
|
void |
setDescription(Description value)
Sets the value of the description property.
|
void |
setPreferenceDirection(PreferenceDirection value)
Sets the value of the preferenceDirection property.
|
protected Description description
protected PreferenceDirection preferenceDirection
protected List<RankedLabel> rankedLabel
protected List<FuzzyLabel> fuzzyLabel
public Description getDescription()
Descriptionpublic void setDescription(Description value)
value - allowed object is
Descriptionpublic PreferenceDirection getPreferenceDirection()
PreferenceDirectionpublic void setPreferenceDirection(PreferenceDirection value)
value - allowed object is
PreferenceDirectionpublic List<RankedLabel> getRankedLabel()
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a set method for the rankedLabel property.
For example, to add a new item, do as follows:
getRankedLabel().add(newItem);
Objects of the following type(s) are allowed in the list
RankedLabel
public List<FuzzyLabel> getFuzzyLabel()
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a set method for the fuzzyLabel property.
For example, to add a new item, do as follows:
getFuzzyLabel().add(newItem);
Objects of the following type(s) are allowed in the list
FuzzyLabel
Copyright © 2013–2021 Sébastien Bigaret, Patrick Meyer. All rights reserved.