class Node:
Known subclasses: django.db.models.query_utils.Q
, django.db.models.sql.where.WhereNode
Class Method | _new_instance |
No summary |
Method | __bool__ |
Return whether or not this node has children. |
Method | __contains__ |
Return True if 'other' is a direct child of this instance. |
Method | __deepcopy__ |
Undocumented |
Method | __eq__ |
Undocumented |
Method | __hash__ |
Undocumented |
Method | __init__ |
Construct a new Node. If no connector is given, use the default. |
Method | __len__ |
Return the number of children this node has. |
Method | __repr__ |
Undocumented |
Method | __str__ |
Undocumented |
Method | add |
Combine this tree and the data represented by data using the connector conn_type. The combine is done by squashing the node other away if possible. |
Method | negate |
Negate the sense of the root connector. |
Class Variable | default |
Undocumented |
Instance Variable | children |
Undocumented |
Instance Variable | connector |
Undocumented |
Instance Variable | negated |
Undocumented |
django.db.models.query_utils.Q
Combine this tree and the data represented by data using the connector conn_type. The combine is done by squashing the node other away if possible.
This tree (self) will never be pushed to a child node of the combined tree, nor will the connector or negated properties change.
Return a node which can be used in place of data regardless if the node other got squashed or not.