Class TextMatchType
- java.lang.Object
-
- org.oasis_open.docs.ns.wscal.calws_soap.TextMatchType
-
public class TextMatchType extends Object
The textMatch XML element specifies text used for a substring match against the property or parameter value specified in a calendaring REPORT request. The "collation" attribute is used to select the collation that the server MUST use for character string matching. In the absence of this attribute, the server MUST use the "i;ascii-casemap" collation. The "negate-condition" attribute is used to indicate that this test returns a match if the text matches when the attribute value is set to "no", or return a match if the text does not match, if the attribute value is set to "yes". For example, this can be used to match components with a STATUS property not set to CANCELLED.Java class for TextMatchType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="TextMatchType"> <simpleContent> <extension base="<http://www.w3.org/2001/XMLSchema>string"> <attribute name="collation" type="{http://www.w3.org/2001/XMLSchema}string" default="i;ascii-casemap" /> <attribute name="negate-condition" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> </extension> </simpleContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description TextMatchType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCollation()Gets the value of the collation property.StringgetValue()Gets the value of the value property.booleanisNegateCondition()Gets the value of the negateCondition property.voidsetCollation(String value)Sets the value of the collation property.voidsetNegateCondition(Boolean value)Sets the value of the negateCondition property.voidsetValue(String value)Sets the value of the value property.
-
-
-
Method Detail
-
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
-
getCollation
public String getCollation()
Gets the value of the collation property.- Returns:
- possible object is
String
-
setCollation
public void setCollation(String value)
Sets the value of the collation property.- Parameters:
value- allowed object isString
-
isNegateCondition
public boolean isNegateCondition()
Gets the value of the negateCondition property.- Returns:
- possible object is
Boolean
-
-