Enumeration FilterExpressionOperator

Name

FilterExpressionOperator

Enumeration Members

CASE_INSENSITIVE_REGULAR_EXPRESSION: "CASE_INSENSITIVE_REGULAR_EXPRESSION"

Operator used to check that a string field matches a particular regular expression where an exact case match is not necessary.

EQUAL: "EQUAL"

Operator used to check for an exact match between a field and a value.

GREATER_THAN: "GREATER_THAN"

Operator used to check that a field is greater than a particular value.

GREATER_THAN_OR_EQUAL: "GREATER_THAN_OR_EQUAL"

Operator used to check that a field is greater than or equal to a particular value.

LESS_THAN: "LESS_THAN"

Operator used to check that a field is less than a particular value.

LESS_THAN_OR_EQUAL: "LESS_THAN_OR_EQUAL"

Operator used to check that a field is less than or equal to a particular value.

NOT_EQUAL: "NOT_EQUAL"

Operator used to check that a field does not match a particular value.

NUMERIC_EQUAL: "NUMERIC_EQUAL"

Operator used to check for an exact match between a numeric field and value.

NUMERIC_NOT_EQUAL: "NUMERIC_NOT_EQUAL"

Operator used to check that a numeric field does not match a particular value.

REGULAR_EXPRESSION: "REGULAR_EXPRESSION"

Operator used to check that a string field matches a particular regular expression.

VALUE_IS_NULL: "VALUE_IS_NULL"

Operator used to check that a field matches a null value.

Generated using TypeDoc