Class ConditionType
- java.lang.Object
-
- org.bidib.jbidibc.decoder.schema.commontypes.ConditionType
-
public class ConditionType extends Object
Java class for ConditionType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ConditionType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{http://www.decoderdb.de/schema/commonTypes/1.2}condition" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="type" use="required" type="{http://www.decoderdb.de/schema/commonTypes/1.2}tokenNotEmpty" /> <attribute name="operation" use="required" type="{http://www.decoderdb.de/schema/commonTypes/1.2}tokenNotEmpty" /> <attribute name="cv" type="{http://www.decoderdb.de/schema/commonTypes/1.2}tokenNotEmpty" /> <attribute name="indexHigh" type="{http://www.w3.org/2001/XMLSchema}unsignedByte" /> <attribute name="indexLow" type="{http://www.w3.org/2001/XMLSchema}unsignedByte" /> <attribute name="selection" type="{http://www.decoderdb.de/schema/commonTypes/1.2}tokenNotEmpty" /> <attribute name="value" type="{http://www.decoderdb.de/schema/commonTypes/1.2}tokenNotEmpty" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description ConditionType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object that)List<ConditionType>getCondition()Gets the value of the condition property.StringgetCv()Gets the value of the cv property.ShortgetIndexHigh()Gets the value of the indexHigh property.ShortgetIndexLow()Gets the value of the indexLow property.StringgetOperation()Gets the value of the operation property.StringgetSelection()Gets the value of the selection property.StringgetType()Gets the value of the type property.StringgetValue()Gets the value of the value property.inthashCode()voidsetCv(String value)Sets the value of the cv property.voidsetIndexHigh(Short value)Sets the value of the indexHigh property.voidsetIndexLow(Short value)Sets the value of the indexLow property.voidsetOperation(String value)Sets the value of the operation property.voidsetSelection(String value)Sets the value of the selection property.voidsetType(String value)Sets the value of the type property.voidsetValue(String value)Sets the value of the value property.StringtoString()ConditionTypewithCondition(Collection<ConditionType> values)ConditionTypewithCondition(ConditionType... values)ConditionTypewithCv(String value)ConditionTypewithIndexHigh(Short value)ConditionTypewithIndexLow(Short value)ConditionTypewithOperation(String value)ConditionTypewithSelection(String value)ConditionTypewithType(String value)ConditionTypewithValue(String value)
-
-
-
Method Detail
-
getCondition
public List<ConditionType> getCondition()
Gets the value of the condition property.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
setmethod for the condition property.For example, to add a new item, do as follows:
getCondition().add(newItem);Objects of the following type(s) are allowed in the list
ConditionType
-
getType
public String getType()
Gets the value of the type property.- Returns:
- possible object is
String
-
setType
public void setType(String value)
Sets the value of the type property.- Parameters:
value- allowed object isString
-
getOperation
public String getOperation()
Gets the value of the operation property.- Returns:
- possible object is
String
-
setOperation
public void setOperation(String value)
Sets the value of the operation property.- Parameters:
value- allowed object isString
-
setCv
public void setCv(String value)
Sets the value of the cv property.- Parameters:
value- allowed object isString
-
getIndexHigh
public Short getIndexHigh()
Gets the value of the indexHigh property.- Returns:
- possible object is
Short
-
setIndexHigh
public void setIndexHigh(Short value)
Sets the value of the indexHigh property.- Parameters:
value- allowed object isShort
-
getIndexLow
public Short getIndexLow()
Gets the value of the indexLow property.- Returns:
- possible object is
Short
-
setIndexLow
public void setIndexLow(Short value)
Sets the value of the indexLow property.- Parameters:
value- allowed object isShort
-
getSelection
public String getSelection()
Gets the value of the selection property.- Returns:
- possible object is
String
-
setSelection
public void setSelection(String value)
Sets the value of the selection property.- Parameters:
value- allowed object isString
-
getValue
public String getValue()
Gets the value of the value property.- Returns:
- possible object is
String
-
setValue
public void setValue(String value)
Sets the value of the value property.- Parameters:
value- allowed object isString
-
withCondition
public ConditionType withCondition(ConditionType... values)
-
withCondition
public ConditionType withCondition(Collection<ConditionType> values)
-
withType
public ConditionType withType(String value)
-
withOperation
public ConditionType withOperation(String value)
-
withCv
public ConditionType withCv(String value)
-
withIndexHigh
public ConditionType withIndexHigh(Short value)
-
withIndexLow
public ConditionType withIndexLow(Short value)
-
withSelection
public ConditionType withSelection(String value)
-
withValue
public ConditionType withValue(String value)
-
-