public class TaskSearchQueryTerm extends Object implements Serializable
Modifier and Type | Field and Description |
---|---|
String |
_operator
The type of comparison operator to use when matching a task field against the search value
Possible values include:
"=" - exactly matches
"<>" - does not equal
"<" - less than
">" - greater than
"<=" - less than or equal to
">=" - greater than or equal to
"in" - the value is in a set of possible values
"not in" - the value is not in a set of value
"between" - the value is between to other values, useful for numeric and date comparisons
"like" - wildcarding match
"not like" - does not match a wildcarded value
"contains" - the task field contains the search term value
"is null" - the task field value is null
"is not null" - the task field value is not null
|
String[] |
fields
Array of task field names to compare with the specified query term value
|
Object |
value
The value to compare against when matching a task against the search criteria
|
Constructor and Description |
---|
TaskSearchQueryTerm() |
Modifier and Type | Method and Description |
---|---|
String |
get_operator() |
String[] |
getFields() |
Object |
getValue() |
boolean |
isCaseInsensitive() |
boolean |
isMatchedValue() |
void |
set_operator(String value) |
void |
setCaseInsensitive(boolean value) |
void |
setFields(String[] value) |
void |
setMatchedValue(boolean value) |
void |
setValue(Object value) |
public String[] fields
public String _operator
public Object value
public String get_operator()
public void set_operator(String value)
public boolean isCaseInsensitive()
public void setCaseInsensitive(boolean value)
public String[] getFields()
public void setFields(String[] value)
public boolean isMatchedValue()
public void setMatchedValue(boolean value)
public Object getValue()
public void setValue(Object value)