Package org.python.core
Class PyInteger
- java.lang.Object
-
- org.python.core.PyObject
-
- org.python.core.PyInteger
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
DBApiType,PyBoolean,PyIntegerDerived
public class PyInteger extends PyObject
A builtin python int.- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.python.core.PyObject
PyObject.ConversionException
-
-
Field Summary
Fields Modifier and Type Field Description static java.math.BigIntegerMAX_INTThe maximum value of an int represented by a BigIntegerstatic java.math.BigIntegermaxIntDeprecated.Use MAX_INT instead.static java.math.BigIntegerMIN_INTThe minimum value of an int represented by a BigIntegerstatic java.math.BigIntegerminIntDeprecated.Use MIN_INT instead.static PyTypeTYPE-
Fields inherited from class org.python.core.PyObject
gcMonitorGlobal
-
-
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.PyObject__and__(PyObject right)Equivalent to the standard Python __and__ methodint__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__ methodPyFloat__float__()Equivalent to the standard Python __float__ method.PyObject__floordiv__(PyObject right)Equivalent to the standard Python __floordiv__ methodPyObject__format__(PyObject formatSpec)PyTuple__getnewargs__()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__index__()Equivalent to the standard Python __index__ method.PyObject__int__()Equivalent to the standard Python __int__ method.PyObject__invert__()Equivalent to the standard Python __invert__ method.PyObject__long__()Equivalent to the standard Python __long__ method.PyObject__lshift__(PyObject right)Equivalent to the standard Python __lshift__ methodPyObject__mod__(PyObject right)Equivalent to the standard Python __mod__ methodPyObject__mul__(PyObject right)Equivalent to the standard Python __mul__ 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 right)Equivalent to the standard Python __or__ methodPyObject__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__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__rshift__(PyObject right)Equivalent to the standard Python __rshift__ methodPyObject__rsub__(PyObject left)Equivalent to the standard Python __rsub__ methodPyObject__rtruediv__(PyObject left)Equivalent to the standard Python __rtruediv__ methodPyObject__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__ methodPyObject__trunc__()Equivalent to the standard Python __trunc__ method.PyObject__xor__(PyObject right)Equivalent to the standard Python __xor__ methodintasIndex(PyObject err)Convert this object into an index-sized integer.intasInt()Convert this object into an int.intasInt(int index)longasLong()Convert this object longo an long.longasLong(int index)intbit_length()Equivalent to the standard Python bit_length method.PyObjectconjugate()Equivalent to the standard Python conjugate method.PyObjectgetDenominator()PyObjectgetImag()PyObjectgetNumerator()PyObjectgetReal()intgetValue()inthashCode()static PyObjectint_new(PyNewWrapper new_, boolean init, PyType subtype, PyObject[] args, java.lang.String[] keywords)booleanisIndex()Determine if this object can act as an index (implements __index__).booleanisMappingType()booleanisNumberType()booleanisSequenceType()java.lang.StringtoString()-
Methods inherited from class org.python.core.PyObject
__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__, __eq__, __findattr__, __findattr__, __findattr_ex__, __finditem__, __finditem__, __finditem__, __ge__, __get__, __getattr__, __getattr__, __getitem__, __getitem__, __getslice__, __getslice__, __gt__, __hash__, __iadd__, __iand__, __idiv__, __idivmod__, __ifloordiv__, __ilshift__, __imod__, __imul__, __ior__, __ipow__, __irshift__, __isub__, __iter__, __iternext__, __itruediv__, __ixor__, __le__, __len__, __lt__, __ne__, __not__, __pow__, __rand__, __rdivmod__, __reduce__, __reduce_ex__, __reduce_ex__, __repr__, __rlshift__, __ror__, __rrshift__, __rxor__, __set__, __setattr__, __setattr__, __setitem__, __setitem__, __setitem__, __setslice__, __setslice__, __str__, __unicode__, _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, asIterable, asName, asName, asString, asString, asStringOrNull, asStringOrNull, delDict, delType, dispatch__init__, equals, fastGetClass, fastGetDict, getDict, getType, implementsDescrDelete, implementsDescrGet, implementsDescrSet, invoke, invoke, invoke, invoke, invoke, invoke, isCallable, isDataDescr, isInteger, noAttributeError, object___subclasshook__, readonlyAttributeError, setDict, setType
-
-
-
-
Field Detail
-
TYPE
public static final PyType TYPE
-
MIN_INT
public static final java.math.BigInteger MIN_INT
The minimum value of an int represented by a BigInteger
-
MAX_INT
public static final java.math.BigInteger MAX_INT
The maximum value of an int represented by a BigInteger
-
minInt
@Deprecated public static final java.math.BigInteger minInt
Deprecated.Use MIN_INT instead.
-
maxInt
@Deprecated public static final java.math.BigInteger maxInt
Deprecated.Use MAX_INT instead.
-
-
Constructor Detail
-
PyInteger
public PyInteger(PyType subType, int v)
-
PyInteger
public PyInteger(int v)
-
-
Method Detail
-
int_new
public static PyObject int_new(PyNewWrapper new_, boolean init, PyType subtype, PyObject[] args, java.lang.String[] keywords)
-
getReal
public PyObject getReal()
-
getImag
public PyObject getImag()
-
getNumerator
public PyObject getNumerator()
-
getDenominator
public PyObject getDenominator()
-
getValue
public int getValue()
-
__nonzero__
public boolean __nonzero__()
Description copied from class:PyObjectEquivalent to the standard Python __nonzero__ method. Returns whether of not a givenPyObjectis considered true.- Overrides:
__nonzero__in classPyObject
-
__tojava__
public java.lang.Object __tojava__(java.lang.Class<?> c)
Description copied from class:PyObjectEquivalent to the Jython __tojava__ method. Tries to coerce this object to an instance of the requested Java class. Returns the special objectPy.NoConversionif thisPyObjectcan not be converted to the desired Java class.- Overrides:
__tojava__in classPyObject- Parameters:
c- the Class to convert thisPyObjectto.
-
__cmp__
public int __cmp__(PyObject other)
Description copied from class:PyObjectEquivalent to the standard Python __cmp__ method.
-
__coerce_ex__
public java.lang.Object __coerce_ex__(PyObject other)
Description copied from class:PyObjectImplements 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:PyObjectEquivalent to the standard Python __add__ method.
-
__radd__
public PyObject __radd__(PyObject left)
Description copied from class:PyObjectEquivalent to the standard Python __radd__ method.
-
__sub__
public PyObject __sub__(PyObject right)
Description copied from class:PyObjectEquivalent to the standard Python __sub__ method
-
__rsub__
public PyObject __rsub__(PyObject left)
Description copied from class:PyObjectEquivalent to the standard Python __rsub__ method
-
__mul__
public PyObject __mul__(PyObject right)
Description copied from class:PyObjectEquivalent to the standard Python __mul__ method.
-
__rmul__
public PyObject __rmul__(PyObject left)
Description copied from class:PyObjectEquivalent to the standard Python __rmul__ method.
-
__div__
public PyObject __div__(PyObject right)
Description copied from class:PyObjectEquivalent to the standard Python __div__ method
-
__rdiv__
public PyObject __rdiv__(PyObject left)
Description copied from class:PyObjectEquivalent to the standard Python __rdiv__ method
-
__floordiv__
public PyObject __floordiv__(PyObject right)
Description copied from class:PyObjectEquivalent 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:PyObjectEquivalent 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.
-
__truediv__
public PyObject __truediv__(PyObject right)
Description copied from class:PyObjectEquivalent 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:PyObjectEquivalent 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:PyObjectEquivalent to the standard Python __mod__ method
-
__rmod__
public PyObject __rmod__(PyObject left)
Description copied from class:PyObjectEquivalent to the standard Python __rmod__ method
-
__divmod__
public PyObject __divmod__(PyObject right)
Description copied from class:PyObjectEquivalent 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
-
__pow__
public PyObject __pow__(PyObject right, PyObject modulo)
Description copied from class:PyObjectImplements the three argument power function.
-
__rpow__
public PyObject __rpow__(PyObject left)
Description copied from class:PyObjectEquivalent to the standard Python __rpow__ method
-
__lshift__
public PyObject __lshift__(PyObject right)
Description copied from class:PyObjectEquivalent to the standard Python __lshift__ method- Overrides:
__lshift__in classPyObject- Parameters:
right- the object to perform this binary operation with (the right-hand operand).- Returns:
- the result of the lshift, or null if this operation is not defined
-
__rshift__
public PyObject __rshift__(PyObject right)
Description copied from class:PyObjectEquivalent to the standard Python __rshift__ method- Overrides:
__rshift__in classPyObject- Parameters:
right- the object to perform this binary operation with (the right-hand operand).- Returns:
- the result of the rshift, or null if this operation is not defined
-
__and__
public PyObject __and__(PyObject right)
Description copied from class:PyObjectEquivalent to the standard Python __and__ method
-
__xor__
public PyObject __xor__(PyObject right)
Description copied from class:PyObjectEquivalent to the standard Python __xor__ method
-
__or__
public PyObject __or__(PyObject right)
Description copied from class:PyObjectEquivalent to the standard Python __or__ method
-
__neg__
public PyObject __neg__()
Description copied from class:PyObjectEquivalent to the standard Python __neg__ method.
-
__pos__
public PyObject __pos__()
Description copied from class:PyObjectEquivalent to the standard Python __pos__ method.
-
__abs__
public PyObject __abs__()
Description copied from class:PyObjectEquivalent to the standard Python __abs__ method.
-
__invert__
public PyObject __invert__()
Description copied from class:PyObjectEquivalent to the standard Python __invert__ method.- Overrides:
__invert__in classPyObject- Returns:
- ~this.
-
__int__
public PyObject __int__()
Description copied from class:PyObjectEquivalent 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:PyObjectEquivalent 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:PyObjectEquivalent to the standard Python __float__ method. Should only be overridden by numeric objects that can be reasonably coerced into a python float.
-
__trunc__
public PyObject __trunc__()
Description copied from class:PyObjectEquivalent to the standard Python __trunc__ method. Should only be overridden by numeric objects that can reasonably be truncated to an Integral.
-
conjugate
public PyObject conjugate()
Description copied from class:PyObjectEquivalent to the standard Python conjugate method. Should only be overridden by numeric objects that can calculate a complex conjugate.
-
__complex__
public PyComplex __complex__()
Description copied from class:PyObjectEquivalent 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.
-
__oct__
public PyString __oct__()
Description copied from class:PyObjectEquivalent to the standard Python __oct__ method. Should only be overridden by numeric objects that can be reasonably represented as an octal string.
-
__hex__
public PyString __hex__()
Description copied from class:PyObjectEquivalent to the standard Python __hex__ method Should only be overridden by numeric objects that can be reasonably represented as a hexadecimal string.
-
__getnewargs__
public PyTuple __getnewargs__()
- Overrides:
__getnewargs__in classPyObject
-
__index__
public PyObject __index__()
Description copied from class:PyObjectEquivalent to the standard Python __index__ method.
-
bit_length
public int bit_length()
Description copied from class:PyObjectEquivalent to the standard Python bit_length method. Should only be overridden by numeric objects that can calculate a bit_length.- Overrides:
bit_lengthin classPyObject- Returns:
- the bit_length of this object.
-
__format__
public PyObject __format__(PyObject formatSpec)
- Overrides:
__format__in classPyObject
-
isIndex
public boolean isIndex()
Description copied from class:PyObjectDetermine if this object can act as an index (implements __index__).
-
asIndex
public int asIndex(PyObject err)
Description copied from class:PyObjectConvert this object into an index-sized integer. Throws a Python exception on Overflow if specified an exception type for err.
-
isMappingType
public boolean isMappingType()
- Overrides:
isMappingTypein classPyObject
-
isNumberType
public boolean isNumberType()
- Overrides:
isNumberTypein classPyObject
-
isSequenceType
public boolean isSequenceType()
- Overrides:
isSequenceTypein classPyObject
-
asInt
public int asInt()
Description copied from class:PyObjectConvert this object into an int. Throws a PyException on failure.
-
-