An enumeration of all the predicate operators.
Namespace: NetricsServerInterface
Assembly: NetricsServerInterface (in NetricsServerInterface.dll)
Syntax
| Visual Basic (Declaration) |
|---|
| Public Enum NetricsPredicate.pred_ops |
| C# |
|---|
| public enum NetricsPredicate.pred_ops |
| C++ |
|---|
| public enum class NetricsPredicate.pred_ops |
| J# |
|---|
| public enum NetricsPredicate.pred_ops |
| JScript |
|---|
| public enum NetricsPredicate.pred_ops |
Members
| Description | |
|---|---|
| EQUALS | return true if operands are equal |
| INSEN_EQUALS | letter case insensitive version of EQUALS |
| LESSTHAN | return true if left side is less than right |
| INSEN_LESSTHAN | letter case insensitive version if LESSTHAN |
| LESSTHANOREQ | return true if left side is less than or equal to right |
| INSEN_LESSTHANOREQ | letter case insensitive version of LESSTHANOREQ |
| GREATERTHAN | return true if left side is greater than right |
| INSEN_GREATERTHAN | letter case insensitive version of GREATHERTHAN |
| GREATERTHANOREQ | return true if left side is greater than or equal to right |
| INSEN_GREATERTHANOREQ | letter case insensitive version of GREATERTHANOREQ |
| PLUS | Sum numbers, concatenate strings |
| MINUS | Subtract numbers |
| TIMES | Multiply numbers |
| DIVIDEDBY | Divide numbers |
| TOTHE | Raise a number to a power |
| AND | Return true if both operands are true |
| OR | Return true if either operand is true |
| NOT | Return true if operand is false |
| ISIN | Return true if left is substring of right |
| INSEN_ISIN | Return true if left is substring of right letter case insensitive |
| TOINT | Convert operand to an integer |
| TODBL | Convert operand to a double |
| TODATE | Convert operand to a date |
| TODATEEU | Convert operand to a date assuming European formatting |
| TOKENIZE | Split a string into tokens returning a block array |
| SUPERSET | Return true if the block array on the left contains all values in the block array on the right |
| SUBSET | Return true if all values in the block array on the left are in the block array on the right |
| TOBLK | Convert operand to a block |
| TODATET | Convert operand to a data-time value |
| TODATEEUT | Convert operand to a date-time value assuming European formatting |
| ABS | Return absolute value of a number |
| ARGS_CREATE | Create an argument list with one argument |
| ARGS_APPEND | Append an argument to an argument list |
| FUNC_IF | If predicate function |
| FUNC_GEO_DIST | Geo-distance predicate function for calculating distances between two points |
| FUNC_TO_SCORE | Normalize a float value into a 0.0 to 1.0 score. |