Package WordUtils :: Module tree :: Class Node
[show private | hide private]
[frames | no frames]

Type Node

object --+
         |
        Node


Class representing a node in an in-memory ternary search tree.
Method Summary
  __init__(self, key)
Default constructor.
  _getEndpoint(self)
Property target used to get endpoint.
  _getEqkid(self)
Property target used to get eqkid.
  _getHikid(self)
Property target used to get hikid.
  _getLokid(self)
Property target used to get lokid.
  _getSplitchar(self)
Property target used to get splitchar.
  _setEndpoint(self, value)
Property target used to set endpoint.
  _setEqkid(self, value)
Property target used to set eqkid.
  _setHikid(self, value)
Property target used to set hikid.
  _setLokid(self, value)
Property target used to set lokid.
  _setSplitchar(self, value)
Property target used to set splitchar.
    Inherited from object
  __delattr__(...)
x.__delattr__('name') <==> del x.name
  __getattribute__(...)
x.__getattribute__('name') <==> x.name
  __hash__(x)
x.__hash__() <==> hash(x)
  __new__(T, S, ...)
T.__new__(S, ...) -> a new object with type S, a subtype of T
  __reduce__(...)
helper for pickle
  __reduce_ex__(...)
helper for pickle
  __repr__(x)
x.__repr__() <==> repr(x)
  __setattr__(...)
x.__setattr__('name', value) <==> x.name = value
  __str__(x)
x.__str__() <==> str(x)

Property Summary
  endpoint: Endpoint flag.
  eqkid: Equals child.
  hikid: High child.
  lokid: Low child.
  splitchar: Split character.

Method Details

__init__(self, key=None)
(Constructor)

Default constructor.
Parameters:
key - key to be used to construct this node
           (type=single-character string)
Overrides:
__builtin__.object.__init__

_getEndpoint(self)

Property target used to get endpoint.

_getEqkid(self)

Property target used to get eqkid.

_getHikid(self)

Property target used to get hikid.

_getLokid(self)

Property target used to get lokid.

_getSplitchar(self)

Property target used to get splitchar.

_setEndpoint(self, value)

Property target used to set endpoint. We normalize the value to True or False.

_setEqkid(self, value)

Property target used to set eqkid.

_setHikid(self, value)

Property target used to set hikid.

_setLokid(self, value)

Property target used to set lokid.

_setSplitchar(self, value)

Property target used to set splitchar.

Property Details

endpoint

Endpoint flag.
Get Method:
_getEndpoint(self)
Set Method:
_setEndpoint(self, value)

eqkid

Equals child.
Get Method:
_getEqkid(self)
Set Method:
_setEqkid(self, value)

hikid

High child.
Get Method:
_getHikid(self)
Set Method:
_setHikid(self, value)

lokid

Low child.
Get Method:
_getLokid(self)
Set Method:
_setLokid(self, value)

splitchar

Split character.
Get Method:
_getSplitchar(self)
Set Method:
_setSplitchar(self, value)

Generated by Epydoc 2.1 on Tue Apr 4 21:54:30 2006 http://epydoc.sf.net