Package org.python.core
Class PyComplex
- java.lang.Object
-
- org.python.core.PyObject
-
- org.python.core.PyComplex
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
PyComplexDerived
public class PyComplex extends PyObject
A builtin python complex number- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.python.core.PyObject
PyObject.ConversionException
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description PyObject
__abs__()
Equivalent to the standard Python __abs__ method.PyObject
__add__(PyObject right)
Equivalent to the standard Python __add__ method.int
__cmp__(PyObject other)
Equivalent to the standard Python __cmp__ method.java.lang.Object
__coerce_ex__(PyObject other)
Implements numeric coercionPyComplex
__complex__()
Equivalent to the standard Python __complex__ method.PyObject
__div__(PyObject right)
Equivalent to the standard Python __div__ methodPyObject
__divmod__(PyObject right)
Equivalent to the standard Python __divmod__ methodPyObject
__eq__(PyObject other)
Equivalent to the standard Python __eq__ method.PyFloat
__float__()
Equivalent to the standard Python __float__ method.PyObject
__floordiv__(PyObject right)
Equivalent to the standard Python __floordiv__ methodPyObject
__format__(PyObject formatSpec)
PyObject
__ge__(PyObject other)
Equivalent to the standard Python __ge__ method.PyTuple
__getnewargs__()
PyObject
__gt__(PyObject other)
Equivalent to the standard Python __gt__ method.PyObject
__int__()
Equivalent to the standard Python __int__ method.PyObject
__invert__()
Equivalent to the standard Python __invert__ method.PyObject
__le__(PyObject other)
Equivalent to the standard Python __le__ method.PyObject
__long__()
Equivalent to the standard Python __long__ method.PyObject
__lt__(PyObject other)
Equivalent to the standard Python __lt__ method.PyObject
__mod__(PyObject right)
Equivalent to the standard Python __mod__ methodPyObject
__mul__(PyObject right)
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.PyObject
__pos__()
Equivalent to the standard Python __pos__ method.PyObject
__pow__(PyObject right, PyObject modulo)
Implements the three argument power function.PyObject
__radd__(PyObject left)
Equivalent to the standard Python __radd__ method.PyObject
__rdiv__(PyObject left)
Equivalent to the standard Python __rdiv__ methodPyObject
__rdivmod__(PyObject left)
Equivalent to the standard Python __rdivmod__ methodPyString
__repr__()
Equivalent to the standard Python __repr__ method.PyObject
__rfloordiv__(PyObject left)
Equivalent to the standard Python __rfloordiv__ methodPyObject
__rmod__(PyObject left)
Equivalent to the standard Python __rmod__ methodPyObject
__rmul__(PyObject left)
Equivalent to the standard Python __rmul__ method.PyObject
__rpow__(PyObject left)
Equivalent to the standard Python __rpow__ methodPyObject
__rsub__(PyObject left)
Equivalent to the standard Python __rsub__ methodPyObject
__rtruediv__(PyObject left)
Equivalent to the standard Python __rtruediv__ methodPyString
__str__()
Equivalent to the standard Python __str__ method.PyObject
__sub__(PyObject right)
Equivalent to the standard Python __sub__ methodjava.lang.Object
__tojava__(java.lang.Class<?> c)
Equivalent to the Jython __tojava__ method.PyObject
__truediv__(PyObject right)
Equivalent to the standard Python __truediv__ methodstatic PyObject
_pow(PyComplex value, PyComplex right)
static PyObject
complex_new(PyNewWrapper new_, boolean init, PyType subtype, PyObject[] args, java.lang.String[] keywords)
PyComplex
conjugate()
Equivalent to the standard Python conjugate method.PyFloat
getImag()
PyFloat
getReal()
int
hashCode()
boolean
isNumberType()
java.lang.String
toString()
static java.lang.String
toString(double value)
-
Methods inherited from class org.python.core.PyObject
__and__, __call__, __call__, __call__, __call__, __call__, __call__, __call__, __call__, __call__, __call__, __call__, __call__, __call__, __call__, __call__, __call__, __coerce__, __contains__, __delattr__, __delattr__, __delete__, __delitem__, __delitem__, __delslice__, __delslice__, __dir__, __ensure_finalizer__, __findattr__, __findattr__, __findattr_ex__, __finditem__, __finditem__, __finditem__, __get__, __getattr__, __getattr__, __getitem__, __getitem__, __getslice__, __getslice__, __hash__, __hex__, __iadd__, __iand__, __idiv__, __idivmod__, __ifloordiv__, __ilshift__, __imod__, __imul__, __index__, __ior__, __ipow__, __irshift__, __isub__, __iter__, __iternext__, __itruediv__, __ixor__, __len__, __lshift__, __not__, __oct__, __or__, __pow__, __rand__, __reduce__, __reduce_ex__, __reduce_ex__, __rlshift__, __ror__, __rrshift__, __rshift__, __rxor__, __set__, __setattr__, __setattr__, __setitem__, __setitem__, __setitem__, __setslice__, __setslice__, __trunc__, __unicode__, __xor__, _add, _and, _callextra, _cmp, _div, _divmod, _doget, _doget, _doset, _eq, _floordiv, _ge, _gt, _iadd, _iand, _idiv, _idivmod, _ifloordiv, _ilshift, _imod, _imul, _in, _ior, _ipow, _irshift, _is, _isnot, _isub, _itruediv, _ixor, _jcall, _jcallexc, _jthrow, _le, _lshift, _lt, _mod, _mul, _ne, _notin, _or, _pow, _rshift, _sub, _truediv, _xor, asDouble, asIndex, asIndex, asInt, asInt, asIterable, asLong, asLong, asName, asName, asString, asString, asStringOrNull, asStringOrNull, bit_length, delDict, delType, dispatch__init__, equals, fastGetClass, fastGetDict, getDict, getType, implementsDescrDelete, implementsDescrGet, implementsDescrSet, invoke, invoke, invoke, invoke, invoke, invoke, isCallable, isDataDescr, isIndex, isInteger, isMappingType, isSequenceType, noAttributeError, object___subclasshook__, readonlyAttributeError, setDict, setType
-
-
-
-
Constructor Detail
-
PyComplex
public PyComplex(PyType subtype, double r, double i)
-
PyComplex
public PyComplex(double r, double i)
-
PyComplex
public PyComplex(double r)
-
-
Method Detail
-
complex_new
public static PyObject complex_new(PyNewWrapper new_, boolean init, PyType subtype, PyObject[] args, java.lang.String[] keywords)
-
getReal
public final PyFloat getReal()
-
getImag
public final PyFloat getImag()
-
toString
public static java.lang.String toString(double value)
-
__str__
public PyString __str__()
Description copied from class:PyObject
Equivalent to the standard Python __str__ method. This method should not typically need to be overridden. The easiest way to configure the string representation of aPyObject
is to override the standard JavatoString
method.
-
__repr__
public PyString __repr__()
Description copied from class:PyObject
Equivalent to the standard Python __repr__ method. This method should not typically need to be overrriden. The easiest way to configure the string representation of aPyObject
is to override the standard JavatoString
method.
-
__nonzero__
public boolean __nonzero__()
Description copied from class:PyObject
Equivalent to the standard Python __nonzero__ method. Returns whether of not a givenPyObject
is considered true.- Overrides:
__nonzero__
in classPyObject
-
__cmp__
public int __cmp__(PyObject other)
Description copied from class:PyObject
Equivalent to the standard Python __cmp__ method.
-
__eq__
public PyObject __eq__(PyObject other)
Description copied from class:PyObject
Equivalent to the standard Python __eq__ method.
-
__ne__
public PyObject __ne__(PyObject other)
Description copied from class:PyObject
Equivalent to the standard Python __ne__ method.
-
__ge__
public PyObject __ge__(PyObject other)
Description copied from class:PyObject
Equivalent to the standard Python __ge__ method.
-
__gt__
public PyObject __gt__(PyObject other)
Description copied from class:PyObject
Equivalent to the standard Python __gt__ method.
-
__le__
public PyObject __le__(PyObject other)
Description copied from class:PyObject
Equivalent to the standard Python __le__ method.
-
__lt__
public PyObject __lt__(PyObject other)
Description copied from class:PyObject
Equivalent to the standard Python __lt__ method.
-
__coerce_ex__
public java.lang.Object __coerce_ex__(PyObject other)
Description copied from class:PyObject
Implements numeric coercion- Overrides:
__coerce_ex__
in classPyObject
- Parameters:
other
- the other object involved in the coercion- Returns:
- null if coercion is not implemented Py.None if coercion was not possible a single PyObject to use to replace o if this is unchanged; or a PyObject[2] consisting of replacements for this and o.
-
__add__
public PyObject __add__(PyObject right)
Description copied from class:PyObject
Equivalent to the standard Python __add__ method.
-
__radd__
public PyObject __radd__(PyObject left)
Description copied from class:PyObject
Equivalent to the standard Python __radd__ method.
-
__sub__
public PyObject __sub__(PyObject right)
Description copied from class:PyObject
Equivalent to the standard Python __sub__ method
-
__rsub__
public PyObject __rsub__(PyObject left)
Description copied from class:PyObject
Equivalent to the standard Python __rsub__ method
-
__mul__
public PyObject __mul__(PyObject right)
Description copied from class:PyObject
Equivalent to the standard Python __mul__ method.
-
__rmul__
public PyObject __rmul__(PyObject left)
Description copied from class:PyObject
Equivalent to the standard Python __rmul__ method.
-
__div__
public PyObject __div__(PyObject right)
Description copied from class:PyObject
Equivalent to the standard Python __div__ method
-
__rdiv__
public PyObject __rdiv__(PyObject left)
Description copied from class:PyObject
Equivalent to the standard Python __rdiv__ method
-
__floordiv__
public PyObject __floordiv__(PyObject right)
Description copied from class:PyObject
Equivalent to the standard Python __floordiv__ method- Overrides:
__floordiv__
in classPyObject
- Parameters:
right
- the object to perform this binary operation with (the right-hand operand).- Returns:
- the result of the floordiv, or null if this operation is not defined
-
__rfloordiv__
public PyObject __rfloordiv__(PyObject left)
Description copied from class:PyObject
Equivalent to the standard Python __rfloordiv__ method- Overrides:
__rfloordiv__
in classPyObject
- Parameters:
left
- the object to perform this binary operation with (the left-hand operand).- Returns:
- the result of the floordiv, or null if this operation is not defined.
-
__tojava__
public java.lang.Object __tojava__(java.lang.Class<?> c)
Description copied from class:PyObject
Equivalent to the Jython __tojava__ method. Tries to coerce this object to an instance of the requested Java class. Returns the special objectPy.NoConversion
if thisPyObject
can not be converted to the desired Java class.- Overrides:
__tojava__
in classPyObject
- Parameters:
c
- the Class to convert thisPyObject
to.
-
__truediv__
public PyObject __truediv__(PyObject right)
Description copied from class:PyObject
Equivalent to the standard Python __truediv__ method- Overrides:
__truediv__
in classPyObject
- Parameters:
right
- the object to perform this binary operation with (the right-hand operand).- Returns:
- the result of the truediv, or null if this operation is not defined
-
__rtruediv__
public PyObject __rtruediv__(PyObject left)
Description copied from class:PyObject
Equivalent to the standard Python __rtruediv__ method- Overrides:
__rtruediv__
in classPyObject
- Parameters:
left
- the object to perform this binary operation with (the left-hand operand).- Returns:
- the result of the truediv, or null if this operation is not defined.
-
__mod__
public PyObject __mod__(PyObject right)
Description copied from class:PyObject
Equivalent to the standard Python __mod__ method
-
__rmod__
public PyObject __rmod__(PyObject left)
Description copied from class:PyObject
Equivalent to the standard Python __rmod__ method
-
__divmod__
public PyObject __divmod__(PyObject right)
Description copied from class:PyObject
Equivalent to the standard Python __divmod__ method- Overrides:
__divmod__
in classPyObject
- Parameters:
right
- the object to perform this binary operation with (the right-hand operand).- Returns:
- the result of the divmod, or null if this operation is not defined
-
__rdivmod__
public PyObject __rdivmod__(PyObject left)
Description copied from class:PyObject
Equivalent to the standard Python __rdivmod__ method- Overrides:
__rdivmod__
in classPyObject
- Parameters:
left
- the object to perform this binary operation with (the left-hand operand).- Returns:
- the result of the divmod, or null if this operation is not defined.
-
__pow__
public PyObject __pow__(PyObject right, PyObject modulo)
Description copied from class:PyObject
Implements the three argument power function.
-
__rpow__
public PyObject __rpow__(PyObject left)
Description copied from class:PyObject
Equivalent to the standard Python __rpow__ method
-
__neg__
public PyObject __neg__()
Description copied from class:PyObject
Equivalent to the standard Python __neg__ method.
-
__pos__
public PyObject __pos__()
Description copied from class:PyObject
Equivalent to the standard Python __pos__ method.
-
__invert__
public PyObject __invert__()
Description copied from class:PyObject
Equivalent to the standard Python __invert__ method.- Overrides:
__invert__
in classPyObject
- Returns:
- ~this.
-
__abs__
public PyObject __abs__()
Description copied from class:PyObject
Equivalent to the standard Python __abs__ method.
-
__int__
public PyObject __int__()
Description copied from class:PyObject
Equivalent to the standard Python __int__ method. Should only be overridden by numeric objects that can be reasonably coerced into an integer.
-
__long__
public PyObject __long__()
Description copied from class:PyObject
Equivalent to the standard Python __long__ method. Should only be overridden by numeric objects that can be reasonably coerced into a python long.
-
__float__
public PyFloat __float__()
Description copied from class:PyObject
Equivalent to the standard Python __float__ method. Should only be overridden by numeric objects that can be reasonably coerced into a python float.
-
__complex__
public PyComplex __complex__()
Description copied from class:PyObject
Equivalent to the standard Python __complex__ method. Should only be overridden by numeric objects that can be reasonably coerced into a python complex number.- Overrides:
__complex__
in classPyObject
- Returns:
- a complex number corresponding to the value of this object.
-
conjugate
public PyComplex conjugate()
Description copied from class:PyObject
Equivalent to the standard Python conjugate method. Should only be overridden by numeric objects that can calculate a complex conjugate.
-
__getnewargs__
public PyTuple __getnewargs__()
- Overrides:
__getnewargs__
in classPyObject
-
__format__
public PyObject __format__(PyObject formatSpec)
- Overrides:
__format__
in classPyObject
-
isNumberType
public boolean isNumberType()
- Overrides:
isNumberType
in classPyObject
-
-