| Modifier and Type | Field and Description |
|---|---|
| private PyObject[] |
| Access | Constructor and Description |
|---|---|
| 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). other)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). other)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 | __del_derived__()
Implements org.
|
| 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 | |
| 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 | __dir__()
Overrides org. Equivalent to the standard Python __dir__ method. |
| public PyObject | __div__(PyObject
the object to perform this binary operation with (the right-hand operand). other)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). other)Overrides org. Equivalent to the standard Python __divmod__ method |
| public void | __ensure_finalizer__()
Overrides org. PyObjects that implement |
| public PyObject | __enter__()
Overrides org. Called at the start of a context-managed suite (supporting the |
| public PyObject | __eq__(PyObject
the object to compare this with. other)Overrides org. Equivalent to the standard Python __eq__ method. |
| public boolean | __exit__(PyObject type, PyObject value, PyObject traceback)
Overrides org. Called at the end of a context-managed suite (supporting the |
| public PyObject | __findattr_ex__(String name)
Overrides org. Attribute lookup hook. |
| public PyObject | __finditem__(PyObject
the key to lookup in this container key)Overrides org. Very similar to the standard Python __getitem__ method. |
| 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 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). other)Overrides org. Equivalent to the standard Python __floordiv__ method |
| public PyObject | |
| public PyObject | __ge__(PyObject
the object to compare this with. other)Overrides org. Equivalent to the standard Python __ge__ method. |
| public PyObject | __get__(PyObject
- the instance accessing this descriptor. Can be null if this is being accessed by
a type. obj, PyObject - the type accessing this descriptor. Will be null if obj exists as obj is of the
type accessing the descriptor. type)Overrides org. Get descriptor for this PyObject. |
| 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. other)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). other)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). other)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). other)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). other)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). other)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). other)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). other)Overrides org. Equivalent to the standard Python __imul__ method. |
| public PyObject | __index__()
Overrides org. Equivalent to the standard Python __index__ method. |
| 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). other)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). other)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). other)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). other)Overrides org. Equivalent to the standard Python __isub__ method |
| public PyObject | __iter__()
Overrides org. Return an iterator on which |
| 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). other)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). other)Overrides org. Equivalent to the standard Python __ixor__ method |
| public PyObject | __le__(PyObject
the object to compare this with. other)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). other)Overrides org. Equivalent to the standard Python __lshift__ method |
| public PyObject | __lt__(PyObject
the object to compare this with. other)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). other)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). other)Overrides org. Equivalent to the standard Python __mul__ method. |
| public PyObject | __ne__(PyObject
the object to compare this with. other)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). other)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 power to raise this number to. other, PyObject the modulus to perform this operation in or null if no modulo is to be used modulo)Overrides org. Implements the three argument power function. |
| public PyObject | __radd__(PyObject
the object to perform this binary operation with (the left-hand operand). other)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). other)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). other)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). other)Overrides org. Equivalent to the standard Python __rdivmod__ method |
| public PyObject | |
| 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). other)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). other)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). other)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). other)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). other)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). other)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). other)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). other)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). other)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). other)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). other)Overrides org. Equivalent to the standard Python __rxor__ method |
| public void | |
| 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). other)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). other)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). other)Overrides org. Equivalent to the standard Python __xor__ method |
| public void | _checkClosed(String
optional custom message msg)Overrides org. Raise an error if the underlying IO stream is closed. |
| public void | _checkReadable(String
optional custom message msg)Overrides org. Raise an error if the underlying IO stream is not readable. |
| public void | _checkSeekable(String
optional custom message msg)Overrides org. Raise an error if the pointer of underlying IO stream is not capable of being positioned. |
| public void | _checkWritable(String
optional custom message msg)Overrides org. Raise an error if the underlying IO stream is not writable. |
| public void | close()
Overrides org. Close the underlying ioDelegate only if |
| public void | dispatch__init__(PyObject[] args, String[] keywords)
Overrides org. Dispatch __init__ behavior |
| public PyObject | |
| public void | flush()
Overrides org. Flush write buffers, or no-op for read-only and non-blocking streams. |
| public PyObject | |
| public int | |
| public boolean | isatty()
Overrides org. Is the stream known to be an interactive console? |
| public PyObject | read(int
number of bytes to read (if possible) n)Overrides org. The read() method is implemented by calling readinto(); derived classes that want to support read() only need to implement readinto() as a primitive operation. |
| public boolean | |
| public PyObject | readall()
Overrides org. Read until end of file, using multiple |
| public PyObject | readinto(PyObject
byte array to try to fill b)Overrides org. Read up to |
| public PyObject | readline()
Overrides org. Return one line of text (bytes terminates by |
| public PyObject | readline(int
maximum number of bytes (<0 means no limit) limit)Overrides org. Return one line of text (bytes terminates by |
| public PyObject | readlines(PyObject
stop reading lines after this many bytes (if not EOF first) hint)Overrides org. Read a stream as a sequence of lines. |
| public long | seek(long
relative to the specified point pos, int 0=from start, 1=from here, 2=from end whence)Overrides org. Position the read or write pointer at a given byte offset |
| public boolean | seekable()
Overrides org. Is the stream capable of positioning the read/write pointer? |
| public void | |
| public long | |
| public int | traverseDerived(Visitproc visit, Object arg)
Implements org. Traverses all reachable |
| public int | |
| public long | truncate(long
requested for stream size)Overrides org. Truncate file to |
| public long | truncate()
Overrides org. Truncate file to |
| public boolean | |
| public PyObject | write(PyObject
buffer of bytes to be written b)Overrides org. Write the given bytes or bytearray object to the underlying raw stream and return the number of bytes written. |
| public void | writelines(PyObject lines)
Overrides org. Write an iterable sequence of strings to the stream. |