...
Users can also modify and delete all constraints. "Wt." is used set to set priority (weight) for a constraint and "Req." is used to set whether a constraint is required to match.
Matching Operators
- "Equals": The attribute value must be equal to the user value
- "Does not equal": The attribute value must not be equal to the user value
- "Contains": The attribute value must contain the user value
- "Does not contain": The attribute value must not contain the user value
- "Starts with": The attribute value must start with the user value
- "Ends with": The attribute value must end with the user value
- "Only Integers": The attribute value must be an integer
- "Greater than": The attribute value must be greater than the user value
- "Greater than or equal to": The attribute value must be greater than or equal to the user value
- "Less than or equal to": The attribute value must be less than or equal to the user value
- "Less than": The attribute value must be less than the user value
- "Odd": The attribute value must be an odd integer
- "Even": The attribute value must be an even integer
...