org.python.core
public class PyInstance extends PyObject
| Field Summary | |
|---|---|
| PyClass | instclass |
| PyObject | __dict__
The namespace of this instance. |
| Constructor Summary | |
|---|---|
| PyInstance(PyClass iclass, PyObject dict)
Returns a new
| |
| PyInstance(PyClass iclass) | |
| PyInstance() | |
| Method Summary | |
|---|---|
| PyObject | fastGetClass() |
| int | hashCode() |
| PyObject | invoke(String name) |
| PyObject | invoke(String name, PyObject arg1) |
| PyObject | invoke(String name, PyObject arg1, PyObject arg2) |
| PyObject | invoke_ex(String name, PyObject[] args, String[] keywords) |
| PyObject | invoke_ex(String name) |
| PyObject | invoke_ex(String name, PyObject arg1) |
| PyObject | invoke_ex(String name, PyObject arg1, PyObject arg2) |
| PyObject | __abs__()
Implements the __abs__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __add__(PyObject o)
Implements the __add__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __and__(PyObject o)
Implements the __and__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __call__(PyObject[] args, String[] keywords) |
| int | __cmp__(PyObject other) |
| Object | __coerce_ex__(PyObject o) |
| PyComplex | __complex__()
Implements the __complex__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| boolean | __contains__(PyObject o) |
| void | __delattr__(String name) |
| void | __delitem__(PyObject key) |
| PyObject | __divmod__(PyObject o)
Implements the __divmod__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __div__(PyObject o)
Implements the __div__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __eq__(PyObject o) |
| PyObject | __findattr__(String name) |
| PyObject | __findattr__(String name, boolean stopAtJava) |
| PyObject | __finditem__(int key) |
| PyObject | __finditem__(PyObject key) |
| PyFloat | __float__()
Implements the __float__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __floordiv__(PyObject o)
Implements the __floordiv__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __getitem__(PyObject key) |
| PyObject | __ge__(PyObject o) |
| PyObject | __gt__(PyObject o) |
| PyString | __hex__()
Implements the __hex__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __iadd__(PyObject o)
Implements the __iadd__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __iand__(PyObject o)
Implements the __iand__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __idiv__(PyObject o)
Implements the __idiv__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __ifloordiv__(PyObject o)
Implements the __ifloordiv__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __ilshift__(PyObject o)
Implements the __ilshift__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __imod__(PyObject o)
Implements the __imod__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __imul__(PyObject o)
Implements the __imul__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| void | __init__(PyObject[] args, String[] keywords) |
| PyObject | __int__()
Implements the __int__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __invert__()
Implements the __invert__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __ior__(PyObject o)
Implements the __ior__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __ipow__(PyObject o)
Implements the __ipow__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __irshift__(PyObject o)
Implements the __irshift__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __isub__(PyObject o)
Implements the __isub__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __iternext__() |
| PyObject | __iter__() |
| PyObject | __itruediv__(PyObject o)
Implements the __itruediv__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __ixor__(PyObject o)
Implements the __ixor__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __jfindattr__(String name) |
| int | __len__() |
| PyObject | __le__(PyObject o) |
| PyLong | __long__()
Implements the __long__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __lshift__(PyObject o)
Implements the __lshift__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __lt__(PyObject o) |
| PyObject | __mod__(PyObject o)
Implements the __mod__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __mul__(PyObject o)
Implements the __mul__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __neg__()
Implements the __neg__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __ne__(PyObject o) |
| boolean | __nonzero__() |
| PyString | __oct__()
Implements the __oct__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __or__(PyObject o)
Implements the __or__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __pos__()
Implements the __pos__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __pow__(PyObject o)
Implements the __pow__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __radd__(PyObject o)
Implements the __radd__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __rand__(PyObject o)
Implements the __rand__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __rdivmod__(PyObject o)
Implements the __rdivmod__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __rdiv__(PyObject o)
Implements the __rdiv__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyString | __repr__() |
| PyObject | __rfloordiv__(PyObject o)
Implements the __rfloordiv__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __rlshift__(PyObject o)
Implements the __rlshift__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __rmod__(PyObject o)
Implements the __rmod__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __rmul__(PyObject o)
Implements the __rmul__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __ror__(PyObject o)
Implements the __ror__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __rpow__(PyObject o)
Implements the __rpow__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __rrshift__(PyObject o)
Implements the __rrshift__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __rshift__(PyObject o)
Implements the __rshift__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __rsub__(PyObject o)
Implements the __rsub__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __rtruediv__(PyObject o)
Implements the __rtruediv__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyObject | __rxor__(PyObject o)
Implements the __rxor__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| void | __setattr__(String name, PyObject value) |
| void | __setitem__(PyObject key, PyObject value) |
| PyString | __str__() |
| PyObject | __sub__(PyObject o)
Implements the __sub__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| Object | __tojava__(Class c) |
| PyObject | __truediv__(PyObject o)
Implements the __truediv__ method by looking it up
in the instance's dictionary and calling it if it is found.
|
| PyUnicode | __unicode__() |
| PyObject | __xor__(PyObject o)
Implements the __xor__ method by looking it up
in the instance's dictionary and calling it if it is found.
|