Enum AtomicExpression.Operator
Specifies the operators available in an atomic expression.
Namespace: Sdl.LanguagePlatform.TranslationMemory
Assembly: Sdl.LanguagePlatform.TranslationMemory.dll
Syntax
public enum Operator
Fields
| Name | Description |
|---|---|
| Contains | @ (contains) operator. Cannot be applied to DateTime, Integer and SinglePicklist fields. |
| ContainsNot | !@ (does not contain) operator. Cannot be applied to DateTime, Integer and SinglePicklist fields. |
| Equal | == operator. Can be applied to any field type. |
| Greater |
|
| GreaterEqual |
|
| Matches | ~ (matches) operator. Can only be applied to single-value string fields. |
| MatchesNot | !~ (does not match) operator. Can only be applied to single-value string fields. |
| NotEqual | != operator. Cannot be applied to multiple-value fields. |
| Smaller | < operator. Cannot be applied to multiple-value and picklist fields. |
| SmallerEqual | <= operator. Cannot be applied to multiple-value and picklist fields. |