Package schrodinger :: Package test :: Module perceptualdiff :: Class Notify
[hide private]
[frames] | no frames]

Class Notify

object --+    
         |    
 enum.Enum --+
             |
            Notify

Nested Classes [hide private]

Inherited from enum.Enum: _member_type_

Instance Methods [hide private]
 
__format__(self, format_spec)
default object formatter
 
__reduce_ex__(self, proto)
helper for pickle
 
__repr__(self)
repr(x)
 
__str__(self)
str(x)

Inherited from enum.Enum: __dir__, __eq__, __ge__, __gt__, __hash__, __le__, __lt__, __ne__

Inherited from object: __delattr__, __getattribute__, __init__, __reduce__, __setattr__, __sizeof__, __subclasshook__

Static Methods [hide private]

Inherited from enum.Enum: __new__

Class Variables [hide private]
  No = "no"
  Email = "email"
  Terminal = "terminal"
  _member_map_ = OrderedDict([('Email', <Notify.Email: 'email'>)...
  _member_names_ = ['Email', 'No', 'Terminal']
  _value2member_map_ = {'email': <Notify.Email: 'email'>, 'no': ...

Inherited from enum.Enum: name, value

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__format__(self, format_spec)

 

default object formatter

Overrides: object.__format__
(inherited documentation)

__reduce_ex__(self, proto)

 

helper for pickle

Overrides: object.__reduce_ex__
(inherited documentation)

__repr__(self)
(Representation operator)

 

repr(x)

Overrides: object.__repr__
(inherited documentation)

__str__(self)
(Informal representation operator)

 

str(x)

Overrides: object.__str__
(inherited documentation)

Class Variable Details [hide private]

_member_map_

Value:
OrderedDict([('Email', <Notify.Email: 'email'>), ('No', <Notify.No: 'n\
o'>), ('Terminal', <Notify.Terminal: 'terminal'>)])

_value2member_map_

Value:
{'email': <Notify.Email: 'email'>,
 'no': <Notify.No: 'no'>,
 'terminal': <Notify.Terminal: 'terminal'>}