public class Condition extends Object
Java class for Condition complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Condition">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="field" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="operator">
<simpleType>
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="EQUALS"/>
<enumeration value="GREATER_THAN"/>
<enumeration value="LESSER_THAN"/>
<enumeration value="GREATER_OR_EQUAL_THAN"/>
<enumeration value="LESSER_OR_EQUAL_THAN"/>
<enumeration value="IN"/>
</restriction>
</simpleType>
</element>
<element name="values">
<simpleType>
<list itemType="{http://www.w3.org/2001/XMLSchema}string" />
</simpleType>
</element>
</sequence>
</restriction>
</complexContent>
</complexType>
| Constructor and Description |
|---|
Condition() |
| Modifier and Type | Method and Description |
|---|---|
Field |
getField()
Gets the value of the field property.
|
String |
getOperator()
Gets the value of the operator property.
|
List<String> |
getValues()
Gets the value of the values property.
|
void |
setField(Field value)
Sets the value of the field property.
|
void |
setOperator(String value)
Sets the value of the operator property.
|
public Field getField()
Stringpublic void setField(Field value)
value - allowed object is Stringpublic String getOperator()
Stringpublic void setOperator(String value)
value - allowed object is Stringpublic List<String> getValues()
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 values
property.
For example, to add a new item, do as follows:
getValues().add(newItem);
Objects of the following type(s) are allowed in the list String
Copyright © 2025 MuleSoft, Inc.. All rights reserved.