|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.python.core.PyObject
org.python.modules._weakref.AbstractReference
org.python.modules._weakref.ProxyType
| Field Summary |
| Fields inherited from class org.python.core.PyObject |
__class__ |
| Method Summary | |
PyObject |
__abs__()
Equivalent to the standard Python __abs__ method. |
PyObject |
__add__(PyObject o)
Equivalent to the standard Python __add__ method |
PyObject |
__and__(PyObject o)
Equivalent to the standard Python __and__ method |
PyComplex |
__complex__()
Equivalent to the standard Python __complex__ method. |
void |
__delattr__(String name)
A variant of the __delattr__ method which accepts a String as the key. |
PyObject |
__div__(PyObject o)
Equivalent to the standard Python __div__ method |
PyObject |
__divmod__(PyObject o)
Equivalent to the standard Python __divmod__ method |
PyObject |
__findattr__(String name)
A variant of the __findattr__ method which accepts a Java String as the name. |
PyFloat |
__float__()
Equivalent to the standard Python __float__ method. |
PyString |
__hex__()
Equivalent to the standard Python __hex__ method Should only be overridden by numeric objects that can be reasonably represented as a hexadecimal string. |
PyObject |
__iadd__(PyObject o)
Equivalent to the standard Python __iadd__ method |
PyObject |
__iand__(PyObject o)
Equivalent to the standard Python __iand__ method |
PyObject |
__idiv__(PyObject o)
Equivalent to the standard Python __idiv__ method |
PyObject |
__ilshift__(PyObject o)
Equivalent to the standard Python __ilshift__ method |
PyObject |
__imod__(PyObject o)
Equivalent to the standard Python __imod__ method |
PyObject |
__imul__(PyObject o)
Equivalent to the standard Python __imul__ method |
PyInteger |
__int__()
Equivalent to the standard Python __int__ method. |
PyObject |
__invert__()
Equivalent to the standard Python __invert__ method. |
PyObject |
__ior__(PyObject o)
Equivalent to the standard Python __ior__ method |
PyObject |
__ipow__(PyObject o)
Equivalent to the standard Python __ipow__ method |
PyObject |
__irshift__(PyObject o)
Equivalent to the standard Python __irshift__ method |
PyObject |
__isub__(PyObject o)
Equivalent to the standard Python __isub__ method |
PyObject |
__ixor__(PyObject o)
Equivalent to the standard Python __ixor__ method |
PyLong |
__long__()
Equivalent to the standard Python __long__ method. |
PyObject |
__lshift__(PyObject o)
Equivalent to the standard Python __lshift__ method |
PyObject |
__mod__(PyObject o)
Equivalent to the standard Python __mod__ method |
PyObject |
__mul__(PyObject o)
Equivalent to the standard Python __mul__ method |
PyObject |
__neg__()
Equivalent to the standard Python __neg__ method. |
PyString |
__oct__()
Equivalent to the standard Python __oct__ method. |
PyObject |
__or__(PyObject o)
Equivalent to the standard Python __or__ method |
PyObject |
__pos__()
Equivalent to the standard Python __pos__ method. |
PyObject |
__pow__(PyObject o)
Equivalent to the standard Python __pow__ method |
PyObject |
__radd__(PyObject o)
Equivalent to the standard Python __radd__ method |
PyObject |
__rand__(PyObject o)
Equivalent to the standard Python __rand__ method |
PyObject |
__rdiv__(PyObject o)
Equivalent to the standard Python __rdiv__ method |
PyObject |
__rdivmod__(PyObject o)
Equivalent to the standard Python __rdivmod__ method |
PyObject |
__rlshift__(PyObject o)
Equivalent to the standard Python __rlshift__ method |
PyObject |
__rmod__(PyObject o)
Equivalent to the standard Python __rmod__ method |
PyObject |
__rmul__(PyObject o)
Equivalent to the standard Python __rmul__ method |
PyObject |
__ror__(PyObject o)
Equivalent to the standard Python __ror__ method |
PyObject |
__rpow__(PyObject o)
Equivalent to the standard Python __rpow__ method |
PyObject |
__rrshift__(PyObject o)
Equivalent to the standard Python __rrshift__ method |
PyObject |
__rshift__(PyObject o)
Equivalent to the standard Python __rshift__ method |
PyObject |
__rsub__(PyObject o)
Equivalent to the standard Python __rsub__ method |
PyObject |
__rxor__(PyObject o)
Equivalent to the standard Python __rxor__ method |
void |
__setattr__(String name,
PyObject value)
A variant of the __setattr__ method which accepts a String as the key. |
PyString |
__str__()
Equivalent to the standard Python __str__ method. |
PyObject |
__sub__(PyObject o)
Equivalent to the standard Python __sub__ method |
PyObject |
__xor__(PyObject o)
Equivalent to the standard Python __xor__ method |
String |
toString()
|
| Methods inherited from class org.python.modules._weakref.AbstractReference |
__eq__, hashCode |
| Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
| Method Detail |
public PyObject __findattr__(String name)
PyObjectString as the name.
By default, this method will call __findattr__(PyString
name) with the appropriate args. The only reason to override
this method is for performance.
Warning: name must be an interned string!!!!!!!!
__findattr__ in class PyObjectname - the name to lookup in this namespace
must be an interned string .
PyObject.__findattr__(PyString)
public void __setattr__(String name,
PyObject value)
PyObject
__setattr__ in class PyObjectname - the name whose value will be set -
must be an interned string .value - the value to set this name toPyObject.__setattr__(PyString, PyObject)public void __delattr__(String name)
PyObject__delattr__(PyString name)
with the appropriate args.
The only reason to override this method is for performance.
__delattr__ in class PyObjectname - the name which will be removed -
must be an interned string .PyObject.__delattr__(PyString)public PyString __str__()
PyObjectPyObject is to
override the standard Java toString method.
__str__ in class PyObjectpublic PyString __hex__()
PyObject
__hex__ in class PyObjectpublic PyString __oct__()
PyObject
__oct__ in class PyObjectpublic PyInteger __int__()
PyObject
__int__ in class PyObjectpublic PyFloat __float__()
PyObject
__float__ in class PyObjectpublic PyLong __long__()
PyObject
__long__ in class PyObjectpublic PyComplex __complex__()
PyObject
__complex__ in class PyObjectpublic PyObject __pos__()
PyObject
__pos__ in class PyObjectpublic PyObject __neg__()
PyObject
__neg__ in class PyObjectpublic PyObject __abs__()
PyObject
__abs__ in class PyObjectpublic PyObject __invert__()
PyObject
__invert__ in class PyObjectpublic PyObject __add__(PyObject o)
PyObject
__add__ in class PyObjecto - the object to perform this binary operation with
(the right-hand operand).
public PyObject __radd__(PyObject o)
PyObject
__radd__ in class PyObjecto - the object to perform this binary operation with
(the left-hand operand).
public PyObject __iadd__(PyObject o)
PyObject
__iadd__ in class PyObjecto - the object to perform this binary operation with
(the right-hand operand).
public PyObject __sub__(PyObject o)
PyObject
__sub__ in class PyObjecto - the object to perform this binary operation with
(the right-hand operand).
public PyObject __rsub__(PyObject o)
PyObject
__rsub__ in class PyObjecto - the object to perform this binary operation with
(the left-hand operand).
public PyObject __isub__(PyObject o)
PyObject
__isub__ in class PyObjecto - the object to perform this binary operation with
(the right-hand operand).
public PyObject __mul__(PyObject o)
PyObject
__mul__ in class PyObjecto - the object to perform this binary operation with
(the right-hand operand).
public PyObject __rmul__(PyObject o)
PyObject
__rmul__ in class PyObjecto - the object to perform this binary operation with
(the left-hand operand).
public PyObject __imul__(PyObject o)
PyObject
__imul__ in class PyObjecto - the object to perform this binary operation with
(the right-hand operand).
public PyObject __div__(PyObject o)
PyObject
__div__ in class PyObjecto - the object to perform this binary operation with
(the right-hand operand).
public PyObject __rdiv__(PyObject o)
PyObject
__rdiv__ in class PyObjecto - the object to perform this binary operation with
(the left-hand operand).
public PyObject __idiv__(PyObject o)
PyObject
__idiv__ in class PyObjecto - the object to perform this binary operation with
(the right-hand operand).
public PyObject __mod__(PyObject o)
PyObject
__mod__ in class PyObjecto - the object to perform this binary operation with
(the right-hand operand).
public PyObject __rmod__(PyObject o)
PyObject
__rmod__ in class PyObjecto - the object to perform this binary operation with
(the left-hand operand).
public PyObject __imod__(PyObject o)
PyObject
__imod__ in class PyObjecto - the object to perform this binary operation with
(the right-hand operand).
public PyObject __divmod__(PyObject o)
PyObject
__divmod__ in class PyObjecto - the object to perform this binary operation with
(the right-hand operand).
public PyObject __rdivmod__(PyObject o)
PyObject
__rdivmod__ in class PyObjecto - the object to perform this binary operation with
(the left-hand operand).
public PyObject __pow__(PyObject o)
PyObject
__pow__ in class PyObjecto - the object to perform this binary operation with
(the right-hand operand).
public PyObject __rpow__(PyObject o)
PyObject
__rpow__ in class PyObjecto - the object to perform this binary operation with
(the left-hand operand).
public PyObject __ipow__(PyObject o)
PyObject
__ipow__ in class PyObjecto - the object to perform this binary operation with
(the right-hand operand).
public PyObject __lshift__(PyObject o)
PyObject
__lshift__ in class PyObjecto - the object to perform this binary operation with
(the right-hand operand).
public PyObject __rlshift__(PyObject o)
PyObject
__rlshift__ in class PyObjecto - the object to perform this binary operation with
(the left-hand operand).
public PyObject __ilshift__(PyObject o)
PyObject
__ilshift__ in class PyObjecto - the object to perform this binary operation with
(the right-hand operand).
public PyObject __rshift__(PyObject o)
PyObject
__rshift__ in class PyObjecto - the object to perform this binary operation with
(the right-hand operand).
public PyObject __rrshift__(PyObject o)
PyObject
__rrshift__ in class PyObjecto - the object to perform this binary operation with
(the left-hand operand).
public PyObject __irshift__(PyObject o)
PyObject
__irshift__ in class PyObjecto - the object to perform this binary operation with
(the right-hand operand).
public PyObject __and__(PyObject o)
PyObject
__and__ in class PyObjecto - the object to perform this binary operation with
(the right-hand operand).
public PyObject __rand__(PyObject o)
PyObject
__rand__ in class PyObjecto - the object to perform this binary operation with
(the left-hand operand).
public PyObject __iand__(PyObject o)
PyObject
__iand__ in class PyObjecto - the object to perform this binary operation with
(the right-hand operand).
public PyObject __or__(PyObject o)
PyObject
__or__ in class PyObjecto - the object to perform this binary operation with
(the right-hand operand).
public PyObject __ror__(PyObject o)
PyObject
__ror__ in class PyObjecto - the object to perform this binary operation with
(the left-hand operand).
public PyObject __ior__(PyObject o)
PyObject
__ior__ in class PyObjecto - the object to perform this binary operation with
(the right-hand operand).
public PyObject __xor__(PyObject o)
PyObject
__xor__ in class PyObjecto - the object to perform this binary operation with
(the right-hand operand).
public PyObject __rxor__(PyObject o)
PyObject
__rxor__ in class PyObjecto - the object to perform this binary operation with
(the left-hand operand).
public PyObject __ixor__(PyObject o)
PyObject
__ixor__ in class PyObjecto - the object to perform this binary operation with
(the right-hand operand).
public String toString()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||