Chemical Data Processing Library Python API - Version 1.1.1
|
Defines constants for the specification of relational constraints on the values of query/target attribute pairs. More...
Static Public Attributes | |
int | ANY = 0 |
Specifies that the relation between the query and target attribute value is not constrained. | |
int | LESS = 1 |
Specifies that the value of the query attribute must be less than the corresponding value of the target attribute to fulfill the constraint. | |
int | EQUAL = 2 |
Specifies that the value of the query attribute must be equal to the corresponding value of the target attribute to fulfill the constraint. | |
int | GREATER = 3 |
Specifies that the value of the query attribute must be greater than the corresponding value of the target attribute to fulfill the constraint. | |
int | LESS_OR_EQUAL = 4 |
Specifies that the value of the query attribute must be less than or equal to the corresponding value of the target attribute to fulfill the constraint. | |
int | GREATER_OR_EQUAL = 5 |
Specifies that the value of the query attribute must be greater than or equal to the corresponding value of the target attribute to fulfill the constraint. | |
int | NOT_EQUAL = 6 |
Specifies that the value of the query attribute must not be equal to the corresponding value of the target attribute to fulfill the constraint. | |
Defines constants for the specification of relational constraints on the values of query/target attribute pairs.