Package schrodinger :: Package test :: Package scival :: Module utils :: Class Item
[hide private]
[frames] | no frames]

Class Item

object --+
         |
        Item
Known Subclasses:

Instance Methods [hide private]
 
__init__(self, data)
x.__init__(...) initializes x; see help(type(x)) for signature
 
loadData(self)
In some cases, not all available data is returned with an item's representation.
 
__getattr__(self, name)
 
_getData(self)
 
__str__(self)
str(x)
 
__repr__(self)
str(x)
 
__contains__(self, value)
 
__getitem__(self, key)
 
__iter__(self)
 
__len__(self)
 
__reversed__(self)

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, data)
(Constructor)

 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

loadData(self)

 

In some cases, not all available data is returned with an item's representation. In these situations, this method can be used to force loading of all data from the 'resource_uri' value.

It shouldn't generally be necessary to call this method, as it is invoked automatically for "proxy items" in which there is only a single 'resource_uri' value.

__str__(self)
(Informal representation operator)

 

str(x)

Overrides: object.__str__
(inherited documentation)

__repr__(self)
(Representation operator)

 

str(x)

Overrides: object.__repr__
(inherited documentation)