Package pygeodesy :: Module named :: Class _NamedBase
[frames] | no frames]

Class _NamedBase

object --+    
         |    
    _Named --+
             |
            _NamedBase
Known Subclasses:

(INTERNAL) Base class with name.

Instance Methods
 
__repr__(self)
str(x)
 
__str__(self)
str(x)
 
others(self, other, name='other')
Check this and an other instance for type compatiblility.
 
toStr(self, **kwds)
(INTERNAL) Must be overloaded.
 
toStr2(self, **kwds)
(INTERNAL) To be overloaded.

Inherited from _Named: classof, copy

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

Properties

Inherited from _Named: classname, classnaming, name, named, named2

Inherited from object: __class__

Method Details

__repr__(self)
(Representation operator)

 

str(x)

Overrides: object.__repr__
(inherited documentation)

__str__(self)
(Informal representation operator)

 

str(x)

Overrides: object.__str__
(inherited documentation)

others(self, other, name='other')

 

Check this and an other instance for type compatiblility.

Parameters:
  • other - The other instance (any type).
  • name - Optional, name for other (str).
Returns:
None.
Raises:
  • TypeError - Mismatch of this and other type.

toStr(self, **kwds)

 

(INTERNAL) Must be overloaded.

Parameters:
  • kwds - Optional, keyword arguments.
Overrides: _Named.toStr

toStr2(self, **kwds)

 

(INTERNAL) To be overloaded.

Parameters:
  • kwds - Optional, keyword arguments.
Returns:
toStr() plus keyword arguments (as str).
Overrides: _Named.toStr2