BatchJobFilterConstraintType Enumeration |
The filter constraint type. Defines how filter parameters and actual values will be compared.
Namespace: PDTec.IceNet.Domain.BatchHub.Service.InterfaceAssembly: PDTec.IceNet.Domain.BatchHub (in PDTec.IceNet.Domain.BatchHub.dll) Version: 6.0.0.0 (6.0.6225.27214)
Syntaxpublic enum BatchJobFilterConstraintType
Members
| Member name | Value | Description |
---|
| Equal | 0 |
Check for equality.
|
| Like | 1 |
Check for string pattern (can include '*' and '?' wildcards).
|
| Between | 2 |
Check if the value is beween first and second parameter.
|
| Less | 3 |
Check if the value is less than the first parameter.
|
| LessEqual | 4 |
Check if the value is less or equal than the first parameter.
|
| Greater | 5 |
Check if the value is greater than the first parameter.
|
| GreaterEqual | 6 |
Check if the value is greater or equal than the first parameter.
|
See Also