| Modifier and Type | Field and Description |
|---|---|
| public PyObject | __dict__
The namespace of this instance. |
| private static JavaFunc | |
| public transient PyClass | |
| public static final PyType |
| Access | Constructor and Description |
|---|---|
| public | |
| public | |
| public |
| Modifier and Type | Method and Description |
|---|---|
| public PyObject | __abs__()
Overrides org. Equivalent to the standard Python __abs__ method. |
| public PyObject | __add__(PyObject
the object to perform this binary operation with (the right-hand operand). o)Overrides org. Equivalent to the standard Python __add__ method. |
| public PyObject | __and__(PyObject
the object to perform this binary operation with (the right-hand operand). o)Overrides org. Equivalent to the standard Python __and__ method |
| public PyObject | __call__(PyObject[]
all arguments to the function (including keyword arguments). args, String[] the keywords used for all keyword arguments. keywords)Overrides org. The basic method to override when implementing a callable object. |
| public int | __cmp__(PyObject
the object to compare this with. other)Overrides org. Equivalent to the standard Python __cmp__ method. |
| public Object | __coerce_ex__(PyObject
the other object involved in the coercion o)Overrides org. Implements numeric coercion |
| public PyComplex | __complex__()
Overrides org. Equivalent to the standard Python __complex__ method. |
| public boolean | __contains__(PyObject
the element to search for in this container. o)Overrides org. Equivalent to the standard Python __contains__ method. |
| public void | |
| public void | __delattr__(String
the name which will be removed - must be an interned string . name)Overrides org. A variant of the __delattr__ method which accepts a String as the key. |
| public void | __delitem__(PyObject
the key to be removed from the container key)Overrides org. Equivalent to the standard Python __delitem__ method. |
| public void | __delslice__(PyObject start, PyObject stop, PyObject step)
Overrides org.
|
| public PyObject | __div__(PyObject
the object to perform this binary operation with (the right-hand operand). o)Overrides org. Equivalent to the standard Python __div__ method |
| public PyObject | __divmod__(PyObject
the object to perform this binary operation with (the right-hand operand). o)Overrides org. Equivalent to the standard Python __divmod__ method |
| public PyObject | __eq__(PyObject
the object to compare this with. o)Overrides org. Equivalent to the standard Python __eq__ method. |
| public PyObject | __findattr_ex__(String name)
Overrides org. Attribute lookup hook. |
| public PyObject | __finditem__(int
the key to lookup in this sequence. key)Overrides org. A variant of the __finditem__ method which accepts a primitive |
| public PyObject | __finditem__(PyObject
the key to lookup in this container key)Overrides org. Very similar to the standard Python __getitem__ method. |
| public PyFloat | __float__()
Overrides org. Equivalent to the standard Python __float__ method. |
| public PyObject | __floordiv__(PyObject
the object to perform this binary operation with (the right-hand operand). o)Overrides org. Equivalent to the standard Python __floordiv__ method |
| public PyObject | |
| public PyObject | __ge__(PyObject
the object to compare this with. o)Overrides org. Equivalent to the standard Python __ge__ method. |
| public PyObject | __getitem__(PyObject
the key to lookup in this container. key)Overrides org. Equivalent to the standard Python __getitem__ method. |
| public PyObject | __getslice__(PyObject start, PyObject stop, PyObject step)
Overrides org.
|
| public PyObject | __gt__(PyObject
the object to compare this with. o)Overrides org. Equivalent to the standard Python __gt__ method. |
| public PyString | __hex__()
Overrides org. Equivalent to the standard Python __hex__ method Should only be overridden by numeric objects that can be reasonably represented as a hexadecimal string. |
| public PyObject | __iadd__(PyObject
the object to perform this binary operation with (the right-hand operand). o)Overrides org. Equivalent to the standard Python __iadd__ method. |
| public PyObject | __iand__(PyObject
the object to perform this binary operation with (the right-hand operand). o)Overrides org. Equivalent to the standard Python __iand__ method |
| public PyObject | __idiv__(PyObject
the object to perform this binary operation with (the right-hand operand). o)Overrides org. Equivalent to the standard Python __idiv__ method |
| public PyObject | __ifloordiv__(PyObject
the object to perform this binary operation with (the right-hand operand). o)Overrides org. Equivalent to the standard Python __ifloordiv__ method |
| public PyObject | __ilshift__(PyObject
the object to perform this binary operation with (the right-hand operand). o)Overrides org. Equivalent to the standard Python __ilshift__ method |
| public PyObject | __imod__(PyObject
the object to perform this binary operation with (the right-hand operand). o)Overrides org. Equivalent to the standard Python __imod__ method |
| public PyObject | __imul__(PyObject
the object to perform this binary operation with (the right-hand operand). o)Overrides org. Equivalent to the standard Python __imul__ method. |
| public PyObject | __index__()
Overrides org. Equivalent to the standard Python __index__ method. |
| public void | |
| public PyObject | __int__()
Overrides org. Equivalent to the standard Python __int__ method. |
| public PyObject | __invert__()
Overrides org. Equivalent to the standard Python __invert__ method. |
| public PyObject | __ior__(PyObject
the object to perform this binary operation with (the right-hand operand). o)Overrides org. Equivalent to the standard Python __ior__ method |
| public PyObject | __ipow__(PyObject
the object to perform this binary operation with (the right-hand operand). o)Overrides org. Equivalent to the standard Python __ipow__ method |
| public PyObject | __irshift__(PyObject
the object to perform this binary operation with (the right-hand operand). o)Overrides org. Equivalent to the standard Python __irshift__ method |
| public PyObject | __isub__(PyObject
the object to perform this binary operation with (the right-hand operand). o)Overrides org. Equivalent to the standard Python __isub__ method |
| public PyObject | __iter__()
Overrides org. Return an iterator that is used to iterate the element of this sequence. |
| public PyObject | __iternext__()
Overrides org. Return the next element of the sequence that this is an iterator for. |
| public PyObject | __itruediv__(PyObject
the object to perform this binary operation with (the right-hand operand). o)Overrides org. Equivalent to the standard Python __itruediv__ method |
| public PyObject | __ixor__(PyObject
the object to perform this binary operation with (the right-hand operand). o)Overrides org. Equivalent to the standard Python __ixor__ method |
| public PyObject | __le__(PyObject
the object to compare this with. o)Overrides org. Equivalent to the standard Python __le__ method. |
| public int | __len__()
Overrides org. Equivalent to the standard Python __len__ method. |
| public PyObject | __long__()
Overrides org. Equivalent to the standard Python __long__ method. |
| public PyObject | __lshift__(PyObject
the object to perform this binary operation with (the right-hand operand). o)Overrides org. Equivalent to the standard Python __lshift__ method |
| public PyObject | __lt__(PyObject
the object to compare this with. o)Overrides org. Equivalent to the standard Python __lt__ method. |
| public PyObject | __mod__(PyObject
the object to perform this binary operation with (the right-hand operand). o)Overrides org. Equivalent to the standard Python __mod__ method |
| public PyObject | __mul__(PyObject
the object to perform this binary operation with (the right-hand operand). o)Overrides org. Equivalent to the standard Python __mul__ method. |
| public PyObject | __ne__(PyObject
the object to compare this with. o)Overrides org. Equivalent to the standard Python __ne__ method. |
| public PyObject | __neg__()
Overrides org. Equivalent to the standard Python __neg__ method. |
| public boolean | __nonzero__()
Overrides org. Equivalent to the standard Python __nonzero__ method. |
| public PyString | __oct__()
Overrides org. Equivalent to the standard Python __oct__ method. |
| public PyObject | __or__(PyObject
the object to perform this binary operation with (the right-hand operand). o)Overrides org. Equivalent to the standard Python __or__ method |
| public PyObject | __pos__()
Overrides org. Equivalent to the standard Python __pos__ method. |
| public PyObject | __pow__(PyObject
the object to perform this binary operation with (the right-hand operand). o)Overrides org. Equivalent to the standard Python __pow__ method |
| public PyObject | __radd__(PyObject
the object to perform this binary operation with (the left-hand operand). o)Overrides org. Equivalent to the standard Python __radd__ method. |
| public PyObject | __rand__(PyObject
the object to perform this binary operation with (the left-hand operand). o)Overrides org. Equivalent to the standard Python __rand__ method |
| public PyObject | __rdiv__(PyObject
the object to perform this binary operation with (the left-hand operand). o)Overrides org. Equivalent to the standard Python __rdiv__ method |
| public PyObject | __rdivmod__(PyObject
the object to perform this binary operation with (the left-hand operand). o)Overrides org. Equivalent to the standard Python __rdivmod__ method |
| public PyString | __repr__()
Overrides org. Equivalent to the standard Python |
| public PyObject | __rfloordiv__(PyObject
the object to perform this binary operation with (the left-hand operand). o)Overrides org. Equivalent to the standard Python __rfloordiv__ method |
| public PyObject | __rlshift__(PyObject
the object to perform this binary operation with (the left-hand operand). o)Overrides org. Equivalent to the standard Python __rlshift__ method |
| public PyObject | __rmod__(PyObject
the object to perform this binary operation with (the left-hand operand). o)Overrides org. Equivalent to the standard Python __rmod__ method |
| public PyObject | __rmul__(PyObject
the object to perform this binary operation with (the left-hand operand). o)Overrides org. Equivalent to the standard Python __rmul__ method. |
| public PyObject | __ror__(PyObject
the object to perform this binary operation with (the left-hand operand). o)Overrides org. Equivalent to the standard Python __ror__ method |
| public PyObject | __rpow__(PyObject
the object to perform this binary operation with (the left-hand operand). o)Overrides org. Equivalent to the standard Python __rpow__ method |
| public PyObject | __rrshift__(PyObject
the object to perform this binary operation with (the left-hand operand). o)Overrides org. Equivalent to the standard Python __rrshift__ method |
| public PyObject | __rshift__(PyObject
the object to perform this binary operation with (the right-hand operand). o)Overrides org. Equivalent to the standard Python __rshift__ method |
| public PyObject | __rsub__(PyObject
the object to perform this binary operation with (the left-hand operand). o)Overrides org. Equivalent to the standard Python __rsub__ method |
| public PyObject | __rtruediv__(PyObject
the object to perform this binary operation with (the left-hand operand). o)Overrides org. Equivalent to the standard Python __rtruediv__ method |
| public PyObject | __rxor__(PyObject
the object to perform this binary operation with (the left-hand operand). o)Overrides org. Equivalent to the standard Python __rxor__ method |
| public void | __setattr__(String
the name whose value will be set - must be an interned string . name, PyObject the value to set this name to value)Overrides org. A variant of the __setattr__ method which accepts a String as the key. |
| public void | __setitem__(PyObject
the key whose value will be set key, PyObject the value to set this key to value)Overrides org. Equivalent to the standard Python __setitem__ method. |
| public void | __setslice__(PyObject start, PyObject stop, PyObject step, PyObject value)
Overrides org.
|
| public PyString | __str__()
Overrides org. Equivalent to the standard Python __str__ method. |
| public PyObject | __sub__(PyObject
the object to perform this binary operation with (the right-hand operand). o)Overrides org. Equivalent to the standard Python __sub__ method |
| public Object | __tojava__(Class<T>
the Class to convert this c)PyObject to.Overrides org. Equivalent to the Jython __tojava__ method. |
| public PyObject | __truediv__(PyObject
the object to perform this binary operation with (the right-hand operand). o)Overrides org. Equivalent to the standard Python __truediv__ method |
| public PyUnicode | |
| public PyObject | __xor__(PyObject
the object to perform this binary operation with (the right-hand operand). o)Overrides org. Equivalent to the standard Python __xor__ method |
| public static void | |
| public PyClass | |
| public int | |
| protected PyObject | |
| protected PyObject | |
| protected PyObject | |
| public PyObject | instance___abs__()
Implements the __abs__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___add__(PyObject o)
Implements the __add__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___and__(PyObject o)
Implements the __and__ method by looking it up in the instance's dictionary and calling it if it is found. |
| pack-priv final PyObject | |
| pack-priv final int | |
| pack-priv final PyComplex | instance___complex__()
Implements the __complex__ method by looking it up in the instance's dictionary and calling it if it is found. |
| pack-priv final boolean | |
| pack-priv final void | |
| pack-priv final void | |
| pack-priv final void | |
| public PyObject | instance___div__(PyObject o)
Implements the __div__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___divmod__(PyObject o)
Implements the __divmod__ method by looking it up in the instance's dictionary and calling it if it is found. |
| pack-priv final PyObject | |
| pack-priv final PyFloat | instance___float__()
Implements the __float__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___floordiv__(PyObject o)
Implements the __floordiv__ method by looking it up in the instance's dictionary and calling it if it is found. |
| pack-priv final PyObject | |
| pack-priv final PyObject | |
| pack-priv final PyObject | |
| pack-priv final PyObject | |
| pack-priv final PyObject | |
| pack-priv final PyString | instance___hex__()
Implements the __hex__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___iadd__(PyObject o)
Implements the __iadd__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___iand__(PyObject o)
Implements the __iand__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___idiv__(PyObject o)
Implements the __idiv__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___ifloordiv__(PyObject o)
Implements the __ifloordiv__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___ilshift__(PyObject o)
Implements the __ilshift__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___imod__(PyObject o)
Implements the __imod__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___imul__(PyObject o)
Implements the __imul__ method by looking it up in the instance's dictionary and calling it if it is found. |
| pack-priv final PyObject | instance___index__()
Implements the __index__ method by looking it up in the instance's dictionary and calling it if it is found. |
| pack-priv final PyObject | instance___int__()
Implements the __int__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___invert__()
Implements the __invert__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___ior__(PyObject o)
Implements the __ior__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___ipow__(PyObject o)
Implements the __ipow__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___irshift__(PyObject o)
Implements the __irshift__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___isub__(PyObject o)
Implements the __isub__ method by looking it up in the instance's dictionary and calling it if it is found. |
| pack-priv final PyObject | |
| public PyObject | instance___itruediv__(PyObject o)
Implements the __itruediv__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___ixor__(PyObject o)
Implements the __ixor__ method by looking it up in the instance's dictionary and calling it if it is found. |
| pack-priv final PyObject | |
| pack-priv final int | |
| pack-priv final PyObject | instance___long__()
Implements the __long__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___lshift__(PyObject o)
Implements the __lshift__ method by looking it up in the instance's dictionary and calling it if it is found. |
| pack-priv final PyObject | |
| public PyObject | instance___mod__(PyObject o)
Implements the __mod__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___mul__(PyObject o)
Implements the __mul__ method by looking it up in the instance's dictionary and calling it if it is found. |
| pack-priv final PyObject | |
| public PyObject | instance___neg__()
Implements the __neg__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public static PyObject | instance___new__(PyNewWrapper new_, boolean init, PyType subtype, PyObject[] args, String[] keywords)
|
| pack-priv final boolean | |
| pack-priv final PyString | instance___oct__()
Implements the __oct__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___or__(PyObject o)
Implements the __or__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___pos__()
Implements the __pos__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___pow__(PyObject o)
Implements the __pow__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___radd__(PyObject o)
Implements the __radd__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___rand__(PyObject o)
Implements the __rand__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___rdiv__(PyObject o)
Implements the __rdiv__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___rdivmod__(PyObject o)
Implements the __rdivmod__ method by looking it up in the instance's dictionary and calling it if it is found. |
| pack-priv final PyString | |
| public PyObject | instance___rfloordiv__(PyObject o)
Implements the __rfloordiv__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___rlshift__(PyObject o)
Implements the __rlshift__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___rmod__(PyObject o)
Implements the __rmod__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___rmul__(PyObject o)
Implements the __rmul__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___ror__(PyObject o)
Implements the __ror__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___rpow__(PyObject o)
Implements the __rpow__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___rrshift__(PyObject o)
Implements the __rrshift__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___rshift__(PyObject o)
Implements the __rshift__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___rsub__(PyObject o)
Implements the __rsub__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___rtruediv__(PyObject o)
Implements the __rtruediv__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___rxor__(PyObject o)
Implements the __rxor__ method by looking it up in the instance's dictionary and calling it if it is found. |
| pack-priv final void | |
| pack-priv final void | |
| pack-priv final void | |
| pack-priv final PyString | |
| public PyObject | instance___sub__(PyObject o)
Implements the __sub__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | instance___truediv__(PyObject o)
Implements the __truediv__ method by looking it up in the instance's dictionary and calling it if it is found. |
| pack-priv final PyUnicode | |
| public PyObject | instance___xor__(PyObject o)
Implements the __xor__ method by looking it up in the instance's dictionary and calling it if it is found. |
| public PyObject | invoke(String
the name of the method to call. This must be an interned string! name)Overrides org. Shortcut for calling a method on a PyObject with no args. |
| public PyObject | invoke(String
the name of the method to call. This must be an interned string! name, PyObject the one argument of the method. arg1)Overrides org. Shortcut for calling a method on a PyObject with one arg. |
| public PyObject | invoke(String
the name of the method to call. This must be an interned string! name, PyObject the first argument of the method. arg1, PyObject the second argument of the method. arg2)Overrides org. Shortcut for calling a method on a PyObject with two args. |
| public PyObject | |
| public PyObject | |
| public PyObject | |
| public PyObject | |
| private PyObject | |
| public boolean | |
| public boolean | isIndex()
Overrides org. Determine if this object can act as an index (implements __index__). |
| public boolean | |
| public boolean | |
| public boolean | |
| protected PyString | makeDefaultRepr()
If a class doesn't define a __repr__ method of its own, the return value from this method is used. |
| private static JavaFunc | |
| public void | |
| protected void | |
| private void | |
| public boolean | refersDirectlyTo(PyObject ob)
Implements org. Optional operation. |
| public String | toString()
Overrides org. Returns a string representation of the object. |
| public int | traverse(Visitproc visit, Object arg)
Implements org. Traverses all directly contained |
| private PyObject | |
| private PyObject | |
| protected void | |
| private void |