Chemical Data Processing Library Python API - Version 1.1.1
Static Public Attributes | List of all members
CDPL.Chem.MatchConstraint.Relation Class Reference

Defines constants for the specification of relational constraints on the values of query/target attribute pairs. More...

+ Inheritance diagram for CDPL.Chem.MatchConstraint.Relation:

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.
 

Detailed Description

Defines constants for the specification of relational constraints on the values of query/target attribute pairs.