Package lxml :: Module objectify :: Class NumberElement
[hide private]
[frames] | no frames]

Class NumberElement



    object --+                
             |                
etree._Element --+            
                 |            
 etree.ElementBase --+        
                     |        
    ObjectifiedElement --+    
                         |    
    ObjectifiedDataElement --+
                             |
                            NumberElement
Known Subclasses:
FloatElement, IntElement, LongElement

Instance Methods [hide private]
 
__abs__(...)
 
__add__(...)
 
__and__(...)
 
__div__(...)
 
__eq__(x, y)
x==y
 
__float__(...)
 
__ge__(x, y)
x>=y
 
__gt__(x, y)
x>y
 
__int__(...)
 
__invert__(...)
 
__le__(x, y)
x<=y
 
__long__(...)
 
__lshift__(...)
 
__lt__(x, y)
x<y
 
__mod__(...)
 
__mul__(...)
 
__ne__(x, y)
x!=y
 
__neg__(...)
 
__new__(T, S, ...)
Returns: a new object with type S, a subtype of T
 
__nonzero__(x)
x != 0
 
__or__(...)
 
__pos__(...)
 
__pow__(x, y, z=...)
pow(x, y[, z])
 
__radd__(x, y)
y+x
 
__rand__(x, y)
y&x
 
__rdiv__(x, y)
y/x
 
__repr__(...)
 
__rlshift__(x, y)
y<<x
 
__rmod__(x, y)
y%x
 
__rmul__(x, y)
y*x
 
__ror__(x, y)
y|x
 
__rpow__(y, x, z=...)
pow(x, y[, z])
 
__rrshift__(x, y)
y>>x
 
__rshift__(...)
 
__rsub__(x, y)
y-x
 
__rtruediv__(x, y)
y/x
 
__rxor__(x, y)
y^x
 
__str__(...)
 
__sub__(...)
 
__truediv__(...)
 
__xor__(...)
 
_setValueParser(...)
Set the function that parses the Python value from a string.

Inherited from ObjectifiedDataElement (private): _setText

Inherited from ObjectifiedElement: __delattr__, __delitem__, __delslice__, __getattr__, __getattribute__, __getitem__, __getslice__, __iter__, __len__, __setattr__, __setitem__, __setslice__, addattr, countchildren, descendantpaths, find, findall, findtext, getchildren

Inherited from etree._Element: __contains__, __copy__, __deepcopy__, __reversed__, addnext, addprevious, append, clear, extend, get, getiterator, getnext, getparent, getprevious, getroottree, index, insert, items, iter, iterancestors, iterchildren, iterdescendants, iterfind, itersiblings, itertext, keys, makeelement, remove, replace, set, values, xpath

Inherited from etree._Element (private): _init

Inherited from object: __hash__, __init__, __reduce__, __reduce_ex__

Properties [hide private]
  pyval

Inherited from ObjectifiedElement: text

Inherited from etree._Element: attrib, nsmap, prefix, sourceline, tag, tail

Inherited from object: __class__

Method Details [hide private]

__new__(T, S, ...)

 
Returns:
a new object with type S, a subtype of T

Overrides: ObjectifiedDataElement.__new__

__nonzero__(x)
(Boolean test operator)

 
x != 0
Overrides: etree._Element.__nonzero__

__repr__(...)
(Representation operator)

 
Overrides: ObjectifiedDataElement.__repr__

__str__(...)
(Informal representation operator)

 
Overrides: ObjectifiedDataElement.__str__