class documentation
class Constrained(Collection): (source)
Known subclasses: twisted.python.roots.Homogenous
, twisted.python.roots.Locked
Constructor: Constrained(entities)
A collection that has constraints on its names and/or entities.
Method | entity |
A method that determines whether an entity may be added to me. |
Method | name |
A method that determines whether an entity may be added to me with a given name. |
Method | put |
Store an entity if it meets both constraints. |
Method | really |
Undocumented |
Inherited from Collection
:
Method | __init__ |
Initialize me. |
Method | del |
Remove a static reference for 'name'. |
Method | get |
Subclass this to generate an entity on demand. |
Method | get |
Retrieve an entity from me. |
Method | get |
Get an entity that was added to me using putEntity. |
Method | list |
A list of all name, entity that I can generate on demand. |
Method | list |
Retrieve a list of the names of entities that I store references to. |
Method | list |
Retrieve a list of all name, entity pairs I contain. |
Method | list |
Retrieve a list of all names for entities that I contain. |
Method | list |
Retrieve a list of all name, entity pairs that I store references to. |
Method | list |
Retrieve a list of the names of entities that I store references to. |
Method | remove |
Remove an entity for 'name', based on the content of 'request'. |
Method | store |
Store an entity for 'name', based on the content of 'request'. |
Instance Variable | entities |
Undocumented |
overridden in
twisted.python.roots.Homogenous
, twisted.python.roots.Locked
A method that determines whether an entity may be added to me.
If the constraint is satisfied, return 1; if the constraint is not satisfied, either return 0 or raise a descriptive ConstraintViolation.
A method that determines whether an entity may be added to me with a given name.
If the constraint is satisfied, return 1; if the constraint is not satisfied, either return 0 or raise a descriptive ConstraintViolation.