[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Defines the different operator types available for event filters.

Mathematical notation for defining ranges of floating point numbers is used as defined below: [a,b] a closed range from value a to value b with the end-points a and b included in the range(a,b) an open range from value a to value b with the end-points a and b not included in the range[a,b) a half-open range from value a to value b with the end-point a included and end-point b not included in the range(a,b] a half-open range from value a to value b with the end-point a not included and end-point b included in the range

The following tables list the members exposed by the FilterOperator type.

Public Fields

  NameDescription
static memberEQUAL
Exact matches (=).

static memberGREATER
Greater (>).

static memberGREATER_OR_EQUAL
Greater or equal (>=).

static memberLESS
Less (<).

static memberLESS_OR_EQUAL
Less or equal (<=).

static memberNOT_EQUAL
Exact not matches (!=).

static memberRANGE_CLOSED
Range contains low and high endpoint, i.e. [a,b]

static memberRANGE_HALF_CLOSED
Range includes high endpoint but not low endpoint, i.e. (a,b]

static memberRANGE_HALF_OPEN
Range includes low endpoint but not high endpoint, i.e. [a,b)

static memberRANGE_OPEN
Range contains neither endpoint, i.e. (a,b)