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

Member NameDescription
EQUALSreturn true if operands are equal
INSEN_EQUALSletter case insensitive version of EQUALS
LESSTHANreturn true if left side is less than right
INSEN_LESSTHANletter case insensitive version if LESSTHAN
LESSTHANOREQreturn true if left side is less than or equal to right
INSEN_LESSTHANOREQletter case insensitive version of LESSTHANOREQ
GREATERTHANreturn true if left side is greater than right
INSEN_GREATERTHANletter case insensitive version of GREATHERTHAN
GREATERTHANOREQreturn true if left side is greater than or equal to right
INSEN_GREATERTHANOREQletter case insensitive version of GREATERTHANOREQ
PLUSSum numbers, concatenate strings
MINUSSubtract numbers
TIMESMultiply numbers
DIVIDEDBYDivide numbers
TOTHERaise a number to a power
ANDReturn true if both operands are true
ORReturn true if either operand is true
NOTReturn true if operand is false
ISINReturn true if left is substring of right
INSEN_ISINReturn true if left is substring of right letter case insensitive
TOINTConvert operand to an integer
TODBLConvert operand to a double
TODATEConvert operand to a date
TODATEEUConvert operand to a date assuming European formatting
TOKENIZESplit a string into tokens returning a block array
SUPERSETReturn true if the block array on the left contains all values in the block array on the right
SUBSETReturn true if all values in the block array on the left are in the block array on the right
TOBLKConvert operand to a block
TODATETConvert operand to a data-time value
TODATEEUTConvert operand to a date-time value assuming European formatting
ABSReturn absolute value of a number

See Also