All Products
Search
Document Center

Tablestore:ComparatorType

Last Updated:Jan 18, 2024

ComparatorType is a relational operator. It includes the following enumeration types:

  • CT_EQUAL, which indicates equal.

  • CT_NOT_EQUAL, which indicates not equal.

  • CT_GREATER_THAN, which indicates greater than.

  • CT_GREATER_EQUAL, which indicates not less than.

  • CT_LESS_THAN, which indicates less than.

  • CT_LESS_EQUAL, which indicates not greater than.

Enumeration value list

enum ComparatorType {
    CT_EQUAL                        = 1;
    CT_NOT_EQUAL                = 2;
    CT_GREATER_THAN           = 3;
    CT_GREATER_EQUAL         = 4;
    CT_LESS_THAN                 = 5;
    CT_LESS_EQUAL                = 6;
}