Slottedpublic class PyFileDerived extends PyFile implements Slotted
PyObject.ConversionExceptionclosed, exposed_base, exposed_name, mode, name, softspace| Constructor | Description |
|---|---|
PyFileDerived(PyType subtype) |
| Modifier and Type | Method | Description |
|---|---|---|
PyObject |
__abs__() |
Equivalent to the standard Python __abs__ method.
|
PyObject |
__add__(PyObject other) |
Equivalent to the standard Python __add__ method
|
PyObject |
__and__(PyObject other) |
Equivalent to the standard Python __and__ method
|
PyObject |
__call__(PyObject[] args,
java.lang.String[] keywords) |
The basic method to override when implementing a callable object.
|
int |
__cmp__(PyObject other) |
Equivalent to the standard Python __cmp__ method.
|
PyComplex |
__complex__() |
Equivalent to the standard Python __complex__ method.
|
boolean |
__contains__(PyObject o) |
Equivalent to the standard Python __contains__ method.
|
void |
__delattr__(java.lang.String name) |
A variant of the __delattr__ method which accepts a String
as the key.
|
void |
__delete__(PyObject obj) |
|
void |
__delitem__(PyObject key) |
Equivalent to the standard Python __delitem__ method.
|
PyObject |
__div__(PyObject other) |
Equivalent to the standard Python __div__ method
|
PyObject |
__divmod__(PyObject other) |
Equivalent to the standard Python __divmod__ method
|
PyObject |
__eq__(PyObject other) |
Equivalent to the standard Python __eq__ method.
|
PyObject |
__findattr__(java.lang.String name) |
A variant of the __findattr__ method which accepts a Java
String as the name. |
PyObject |
__finditem__(PyObject key) |
Very similar to the standard Python __getitem__ method.
|
PyFloat |
__float__() |
Equivalent to the standard Python __float__ method.
|
PyObject |
__floordiv__(PyObject other) |
Equivalent to the standard Python __floordiv__ method
|
PyObject |
__ge__(PyObject other) |
Equivalent to the standard Python __ge__ method.
|
PyObject |
__get__(PyObject obj,
PyObject type) |
|
PyObject |
__getslice__(PyObject start,
PyObject stop,
PyObject step) |
|
PyObject |
__gt__(PyObject other) |
Equivalent to the standard Python __gt__ 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 other) |
Equivalent to the standard Python __iadd__ method
|
PyObject |
__iand__(PyObject other) |
Equivalent to the standard Python __iand__ method
|
PyObject |
__idiv__(PyObject other) |
Equivalent to the standard Python __idiv__ method
|
PyObject |
__ifloordiv__(PyObject other) |
Equivalent to the standard Python __ifloordiv__ method
|
PyObject |
__ilshift__(PyObject other) |
Equivalent to the standard Python __ilshift__ method
|
PyObject |
__imod__(PyObject other) |
Equivalent to the standard Python __imod__ method
|
PyObject |
__imul__(PyObject other) |
Equivalent to the standard Python __imul__ method
|
PyObject |
__int__() |
Equivalent to the standard Python __int__ method.
|
PyObject |
__invert__() |
Equivalent to the standard Python __invert__ method.
|
PyObject |
__ior__(PyObject other) |
Equivalent to the standard Python __ior__ method
|
PyObject |
__ipow__(PyObject other) |
Equivalent to the standard Python __ipow__ method
|
PyObject |
__irshift__(PyObject other) |
Equivalent to the standard Python __irshift__ method
|
PyObject |
__isub__(PyObject other) |
Equivalent to the standard Python __isub__ method
|
PyObject |
__iter__() |
Return an iterator that is used to iterate the element of this
sequence.
|
PyObject |
__iternext__() |
Return the next element of the sequence that this is an iterator
for.
|
PyObject |
__itruediv__(PyObject other) |
Equivalent to the standard Python __itruediv__ method
|
PyObject |
__ixor__(PyObject other) |
Equivalent to the standard Python __ixor__ method
|
PyObject |
__le__(PyObject other) |
Equivalent to the standard Python __le__ method.
|
int |
__len__() |
Equivalent to the standard Python __len__ method.
|
PyLong |
__long__() |
Equivalent to the standard Python __long__ method.
|
PyObject |
__lshift__(PyObject other) |
Equivalent to the standard Python __lshift__ method
|
PyObject |
__lt__(PyObject other) |
Equivalent to the standard Python __lt__ method.
|
PyObject |
__mod__(PyObject other) |
Equivalent to the standard Python __mod__ method
|
PyObject |
__mul__(PyObject other) |
Equivalent to the standard Python __mul__ method
|
PyObject |
__ne__(PyObject other) |
Equivalent to the standard Python __ne__ method.
|
PyObject |
__neg__() |
Equivalent to the standard Python __neg__ method.
|
boolean |
__nonzero__() |
Equivalent to the standard Python __nonzero__ method.
|
PyString |
__oct__() |
Equivalent to the standard Python __oct__ method.
|
PyObject |
__or__(PyObject other) |
Equivalent to the standard Python __or__ method
|
PyObject |
__pos__() |
Equivalent to the standard Python __pos__ method.
|
PyObject |
__pow__(PyObject other) |
Equivalent to the standard Python __pow__ method
|
PyObject |
__radd__(PyObject other) |
Equivalent to the standard Python __radd__ method
|
PyObject |
__rand__(PyObject other) |
Equivalent to the standard Python __rand__ method
|
PyObject |
__rdiv__(PyObject other) |
Equivalent to the standard Python __rdiv__ method
|
PyObject |
__rdivmod__(PyObject other) |
Equivalent to the standard Python __rdivmod__ method
|
PyObject |
__reduce__() |
Used for pickling.
|
PyString |
__repr__() |
Equivalent to the standard Python __repr__ method.
|
PyObject |
__rfloordiv__(PyObject other) |
Equivalent to the standard Python __rfloordiv__ method
|
PyObject |
__rlshift__(PyObject other) |
Equivalent to the standard Python __rlshift__ method
|
PyObject |
__rmod__(PyObject other) |
Equivalent to the standard Python __rmod__ method
|
PyObject |
__rmul__(PyObject other) |
Equivalent to the standard Python __rmul__ method
|
PyObject |
__ror__(PyObject other) |
Equivalent to the standard Python __ror__ method
|
PyObject |
__rpow__(PyObject other) |
Equivalent to the standard Python __rpow__ method
|
PyObject |
__rrshift__(PyObject other) |
Equivalent to the standard Python __rrshift__ method
|
PyObject |
__rshift__(PyObject other) |
Equivalent to the standard Python __rshift__ method
|
PyObject |
__rsub__(PyObject other) |
Equivalent to the standard Python __rsub__ method
|
PyObject |
__rtruediv__(PyObject other) |
Equivalent to the standard Python __rtruediv__ method
|
PyObject |
__rxor__(PyObject other) |
Equivalent to the standard Python __rxor__ method
|
void |
__set__(PyObject obj,
PyObject value) |
|
void |
__setattr__(java.lang.String name,
PyObject value) |
A variant of the __setattr__ method which accepts a String
as the key.
|
void |
__setitem__(PyObject key,
PyObject value) |
Equivalent to the standard Python __setitem__ method.
|
PyString |
__str__() |
Equivalent to the standard Python __str__ method.
|
PyObject |
__sub__(PyObject other) |
Equivalent to the standard Python __sub__ method
|
PyObject |
__truediv__(PyObject other) |
Equivalent to the standard Python __truediv__ method
|
PyUnicode |
__unicode__() |
|
PyObject |
__xor__(PyObject other) |
Equivalent to the standard Python __xor__ method
|
void |
delDict() |
|
void |
dispatch__init__(PyType type,
PyObject[] args,
java.lang.String[] keywords) |
Dispatch __init__ behavior
|
PyObject |
fastGetDict() |
xxx implements where meaningful
|
PyObject |
getDict() |
xxx implements where meaningful
|
PyObject |
getSlot(int index) |
|
int |
hashCode() |
|
void |
setDict(PyObject newDict) |
|
void |
setSlot(int index,
PyObject value) |
|
java.lang.String |
toString() |
__tojava__, close, fileno, flush, getClosed, getMode, getName, next, read, read, readline, readline, readlines, readlines, seek, seek, tell, truncate, truncate, typeSetup, write, writelines, xreadlines__call__, __call__, __call__, __call__, __call__, __call__, __call__, __coerce__, __coerce_ex__, __delattr__, __delitem__, __delslice__, __delslice__, __dir__, __findattr__, __finditem__, __finditem__, __getattr__, __getattr__, __getitem__, __getitem__, __getnewargs__, __getslice__, __hash__, __idivmod__, __not__, __pow__, __setattr__, __setitem__, __setitem__, __setslice__, __setslice__, _add, _and, _callextra, _cmp, _div, _divmod, _doget, _doget, _doset, _eq, _floordiv, _ge, _gt, _in, _is, _isnot, _jcall, _jcallexc, _jthrow, _le, _lshift, _lt, _mod, _mul, _ne, _notin, _or, _pow, _rshift, _sub, _truediv, _xor, asInt, asLong, asName, asString, asStringOrNull, delType, equals, fastGetClass, getDoc, getType, implementsDescrDelete, implementsDescrSet, invoke, invoke, invoke, invoke, invoke, isCallable, isDataDescr, isMappingType, isNumberType, isSequenceType, noAttributeError, readonlyAttributeError, safeRepr, setTypepublic PyFileDerived(PyType subtype)
public PyObject fastGetDict()
PyObjectfastGetDict in class PyObjectpublic PyObject getDict()
PyObjectpublic PyString __str__()
PyObjectPyObject is to
override the standard Java toString method.public PyString __repr__()
PyObjectPyObject is to
override the standard Java toString method.public PyString __hex__()
PyObjectpublic PyString __oct__()
PyObjectpublic PyFloat __float__()
PyObjectpublic PyLong __long__()
PyObjectpublic PyComplex __complex__()
PyObject__complex__ in class PyObjectpublic PyObject __pos__()
PyObjectpublic PyObject __neg__()
PyObjectpublic PyObject __abs__()
PyObjectpublic PyObject __invert__()
PyObject__invert__ in class PyObjectpublic PyObject __reduce__()
PyObject__reduce__ in class PyObjectpublic PyObject __add__(PyObject other)
PyObjectpublic PyObject __radd__(PyObject other)
PyObjectpublic PyObject __sub__(PyObject other)
PyObjectpublic PyObject __rsub__(PyObject other)
PyObjectpublic PyObject __mul__(PyObject other)
PyObjectpublic PyObject __rmul__(PyObject other)
PyObjectpublic PyObject __div__(PyObject other)
PyObjectpublic PyObject __rdiv__(PyObject other)
PyObjectpublic PyObject __floordiv__(PyObject other)
PyObject__floordiv__ in class PyObjectother - the object to perform this binary operation with
(the right-hand operand).public PyObject __rfloordiv__(PyObject other)
PyObject__rfloordiv__ in class PyObjectother - the object to perform this binary operation with
(the left-hand operand).public PyObject __truediv__(PyObject other)
PyObject__truediv__ in class PyObjectother - the object to perform this binary operation with
(the right-hand operand).public PyObject __rtruediv__(PyObject other)
PyObject__rtruediv__ in class PyObjectother - the object to perform this binary operation with
(the left-hand operand).public PyObject __mod__(PyObject other)
PyObjectpublic PyObject __rmod__(PyObject other)
PyObjectpublic PyObject __divmod__(PyObject other)
PyObject__divmod__ in class PyObjectother - the object to perform this binary operation with
(the right-hand operand).public PyObject __rdivmod__(PyObject other)
PyObject__rdivmod__ in class PyObjectother - the object to perform this binary operation with
(the left-hand operand).public PyObject __pow__(PyObject other)
PyObjectpublic PyObject __rpow__(PyObject other)
PyObjectpublic PyObject __lshift__(PyObject other)
PyObject__lshift__ in class PyObjectother - the object to perform this binary operation with
(the right-hand operand).public PyObject __rlshift__(PyObject other)
PyObject__rlshift__ in class PyObjectother - the object to perform this binary operation with
(the left-hand operand).public PyObject __rshift__(PyObject other)
PyObject__rshift__ in class PyObjectother - the object to perform this binary operation with
(the right-hand operand).public PyObject __rrshift__(PyObject other)
PyObject__rrshift__ in class PyObjectother - the object to perform this binary operation with
(the left-hand operand).public PyObject __and__(PyObject other)
PyObjectpublic PyObject __rand__(PyObject other)
PyObjectpublic PyObject __or__(PyObject other)
PyObjectpublic PyObject __ror__(PyObject other)
PyObjectpublic PyObject __xor__(PyObject other)
PyObjectpublic PyObject __rxor__(PyObject other)
PyObjectpublic PyObject __lt__(PyObject other)
PyObjectpublic PyObject __le__(PyObject other)
PyObjectpublic PyObject __gt__(PyObject other)
PyObjectpublic PyObject __ge__(PyObject other)
PyObjectpublic PyObject __eq__(PyObject other)
PyObjectpublic PyObject __ne__(PyObject other)
PyObjectpublic PyObject __iadd__(PyObject other)
PyObjectpublic PyObject __isub__(PyObject other)
PyObjectpublic PyObject __imul__(PyObject other)
PyObjectpublic PyObject __idiv__(PyObject other)
PyObjectpublic PyObject __ifloordiv__(PyObject other)
PyObject__ifloordiv__ in class PyObjectother - the object to perform this binary operation with
(the right-hand operand).public PyObject __itruediv__(PyObject other)
PyObject__itruediv__ in class PyObjectother - the object to perform this binary operation with
(the right-hand operand).public PyObject __imod__(PyObject other)
PyObjectpublic PyObject __ipow__(PyObject other)
PyObjectpublic PyObject __ilshift__(PyObject other)
PyObject__ilshift__ in class PyObjectother - the object to perform this binary operation with
(the right-hand operand).public PyObject __irshift__(PyObject other)
PyObject__irshift__ in class PyObjectother - the object to perform this binary operation with
(the right-hand operand).public PyObject __iand__(PyObject other)
PyObjectpublic PyObject __ior__(PyObject other)
PyObjectpublic PyObject __ixor__(PyObject other)
PyObjectpublic PyObject __int__()
PyObjectpublic PyUnicode __unicode__()
__unicode__ in class PyObjectpublic int __cmp__(PyObject other)
PyObjectpublic boolean __nonzero__()
PyObjectPyObject is
considered true.__nonzero__ in class PyObjectpublic boolean __contains__(PyObject o)
PyObject__contains__ in class PyObjecto - the element to search for in this container.public int __len__()
PyObjectpublic PyObject __iter__()
PyObjectIf a PyObject subclass should support iteration based in the __finditem__() method, it must supply an implementation of __iter__() like this:
public PyObject __iter__() {
return new PySequenceIter(this);
}
When iterating over a python sequence from java code, it should be
done with code like this:
PyObject iter = seq.__iter__();
for (PyObject item; (item = iter.__iternext__()) != null;) {
// Do somting with item
}
public PyObject __iternext__()
PyObject__iternext__ in class PyFilepublic PyObject __finditem__(PyObject key)
PyObject__finditem__ in class PyObjectkey - the key to lookup in this containerpublic void __setitem__(PyObject key, PyObject value)
PyObject__setitem__ in class PyObjectkey - the key whose value will be setvalue - the value to set this key topublic PyObject __getslice__(PyObject start, PyObject stop, PyObject step)
__getslice__ in class PyObjectpublic void __delitem__(PyObject key)
PyObject__delitem__ in class PyObjectkey - the key to be removed from the containerpublic PyObject __call__(PyObject[] args, java.lang.String[] keywords)
PyObjectpublic PyObject __findattr__(java.lang.String name)
PyObjectString as the name.
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__(java.lang.String name,
PyObject value)
PyObject__setattr__ in class PyFilename - 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__(java.lang.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 void __delete__(PyObject obj)
__delete__ in class PyObjectpublic void dispatch__init__(PyType type, PyObject[] args, java.lang.String[] keywords)
PyObjectdispatch__init__ in class PyObject