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