|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.python.core.PyObject org.python.core.PyInteger
A builtin python int.
Nested Class Summary |
Nested classes inherited from class org.python.core.PyObject |
PyObject.ConversionException |
Field Summary | |
static java.lang.String |
exposed_name
|
Constructor Summary | |
PyInteger(int v)
|
Method Summary | |
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__ method |
int |
__cmp__(PyObject other)
Equivalent to the standard Python __cmp__ method. |
java.lang.Object |
__coerce_ex__(PyObject other)
Implements numeric coercion |
PyComplex |
__complex__()
Equivalent to the standard Python __complex__ method. |
PyObject |
__div__(PyObject right)
Equivalent to the standard Python __div__ method |
PyObject |
__divmod__(PyObject right)
Equivalent to the standard Python __divmod__ method |
PyFloat |
__float__()
Equivalent to the standard Python __float__ method. |
PyObject |
__floordiv__(PyObject right)
Equivalent to the standard Python __floordiv__ 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 |
__int__()
Equivalent to the standard Python __int__ method. |
PyObject |
__invert__()
Equivalent to the standard Python __invert__ method. |
PyLong |
__long__()
Equivalent to the standard Python __long__ method. |
PyObject |
__lshift__(PyObject right)
Equivalent to the standard Python __lshift__ method |
PyObject |
__mod__(PyObject right)
Equivalent to the standard Python __mod__ method |
PyObject |
__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__ 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__ method |
PyObject |
__rfloordiv__(PyObject left)
Equivalent to the standard Python __rfloordiv__ method |
PyObject |
__rmod__(PyObject left)
Equivalent to the standard Python __rmod__ method |
PyObject |
__rmul__(PyObject left)
Equivalent to the standard Python __rmul__ method |
PyObject |
__rpow__(PyObject left,
PyObject modulo)
|
PyObject |
__rshift__(PyObject right)
Equivalent to the standard Python __rshift__ method |
PyObject |
__rsub__(PyObject left)
Equivalent to the standard Python __rsub__ method |
PyObject |
__rtruediv__(PyObject left)
Equivalent to the standard Python __rtruediv__ method |
PyObject |
__sub__(PyObject right)
Equivalent to the standard Python __sub__ method |
java.lang.Object |
__tojava__(java.lang.Class c)
Equivalent to the Jython __tojava__ method. |
PyObject |
__truediv__(PyObject right)
Equivalent to the standard Python __truediv__ method |
PyObject |
__xor__(PyObject right)
Equivalent to the standard Python __xor__ method |
int |
asInt(int index)
|
long |
asLong(int index)
|
int |
getValue()
|
int |
hashCode()
|
static PyObject |
int_new(PyObject new_,
boolean init,
PyType subtype,
PyObject[] args,
java.lang.String[] keywords)
|
boolean |
isMappingType()
|
boolean |
isSequenceType()
|
java.lang.String |
safeRepr()
|
java.lang.String |
toString()
|
static void |
typeSetup(PyObject dict,
PyType.Newstyle marker)
|
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
public static final java.lang.String exposed_name
Constructor Detail |
public PyInteger(int v)
Method Detail |
public static void typeSetup(PyObject dict, PyType.Newstyle marker)
public static PyObject int_new(PyObject new_, boolean init, PyType subtype, PyObject[] args, java.lang.String[] keywords)
public int getValue()
public java.lang.String safeRepr() throws PyIgnoreMethodTag
safeRepr
in class PyObject
PyIgnoreMethodTag
public java.lang.String toString()
toString
in class PyObject
public int hashCode()
hashCode
in class PyObject
public boolean __nonzero__()
PyObject
PyObject
is
considered true.
__nonzero__
in class PyObject
public java.lang.Object __tojava__(java.lang.Class c)
PyObject
Py.NoConversion
if this PyObject
can not be converted to the
desired Java class.
__tojava__
in class PyObject
c
- the Class to convert this PyObject
to.public int __cmp__(PyObject other)
PyObject
__cmp__
in class PyObject
other
- the object to compare this with.
public java.lang.Object __coerce_ex__(PyObject other)
PyObject
__coerce_ex__
in class PyObject
other
- the other object involved in the coercion
public PyObject __add__(PyObject right)
PyObject
__add__
in class PyObject
right
- the object to perform this binary operation with
(the right-hand operand).
public PyObject __radd__(PyObject left)
PyObject
__radd__
in class PyObject
left
- the object to perform this binary operation with
(the left-hand operand).
public PyObject __sub__(PyObject right)
PyObject
__sub__
in class PyObject
right
- the object to perform this binary operation with
(the right-hand operand).
public PyObject __rsub__(PyObject left)
PyObject
__rsub__
in class PyObject
left
- the object to perform this binary operation with
(the left-hand operand).
public PyObject __mul__(PyObject right)
PyObject
__mul__
in class PyObject
right
- the object to perform this binary operation with
(the right-hand operand).
public PyObject __rmul__(PyObject left)
PyObject
__rmul__
in class PyObject
left
- the object to perform this binary operation with
(the left-hand operand).
public PyObject __div__(PyObject right)
PyObject
__div__
in class PyObject
right
- the object to perform this binary operation with
(the right-hand operand).
public PyObject __rdiv__(PyObject left)
PyObject
__rdiv__
in class PyObject
left
- the object to perform this binary operation with
(the left-hand operand).
public PyObject __floordiv__(PyObject right)
PyObject
__floordiv__
in class PyObject
right
- the object to perform this binary operation with
(the right-hand operand).
public PyObject __rfloordiv__(PyObject left)
PyObject
__rfloordiv__
in class PyObject
left
- the object to perform this binary operation with
(the left-hand operand).
public PyObject __truediv__(PyObject right)
PyObject
__truediv__
in class PyObject
right
- the object to perform this binary operation with
(the right-hand operand).
public PyObject __rtruediv__(PyObject left)
PyObject
__rtruediv__
in class PyObject
left
- the object to perform this binary operation with
(the left-hand operand).
public PyObject __mod__(PyObject right)
PyObject
__mod__
in class PyObject
right
- the object to perform this binary operation with
(the right-hand operand).
public PyObject __rmod__(PyObject left)
PyObject
__rmod__
in class PyObject
left
- the object to perform this binary operation with
(the left-hand operand).
public PyObject __divmod__(PyObject right)
PyObject
__divmod__
in class PyObject
right
- the object to perform this binary operation with
(the right-hand operand).
public PyObject __pow__(PyObject right, PyObject modulo)
PyObject
__pow__
in class PyObject
right
- the power to raise this number to.modulo
- the modulus to perform this operation in or null if no
modulo is to be used
public PyObject __rpow__(PyObject left, PyObject modulo)
public PyObject __lshift__(PyObject right)
PyObject
__lshift__
in class PyObject
right
- the object to perform this binary operation with
(the right-hand operand).
public PyObject __rshift__(PyObject right)
PyObject
__rshift__
in class PyObject
right
- the object to perform this binary operation with
(the right-hand operand).
public PyObject __and__(PyObject right)
PyObject
__and__
in class PyObject
right
- the object to perform this binary operation with
(the right-hand operand).
public PyObject __xor__(PyObject right)
PyObject
__xor__
in class PyObject
right
- the object to perform this binary operation with
(the right-hand operand).
public PyObject __or__(PyObject right)
PyObject
__or__
in class PyObject
right
- the object to perform this binary operation with
(the right-hand operand).
public PyObject __neg__()
PyObject
__neg__
in class PyObject
public PyObject __pos__()
PyObject
__pos__
in class PyObject
public PyObject __abs__()
PyObject
__abs__
in class PyObject
public PyObject __invert__()
PyObject
__invert__
in class PyObject
public PyObject __int__()
PyObject
__int__
in class PyObject
public PyLong __long__()
PyObject
__long__
in class PyObject
public PyFloat __float__()
PyObject
__float__
in class PyObject
public PyComplex __complex__()
PyObject
__complex__
in class PyObject
public PyString __oct__()
PyObject
__oct__
in class PyObject
public PyString __hex__()
PyObject
__hex__
in class PyObject
public boolean isMappingType()
isMappingType
in class PyObject
public boolean isSequenceType()
isSequenceType
in class PyObject
public long asLong(int index) throws PyObject.ConversionException
asLong
in class PyObject
PyObject.ConversionException
public int asInt(int index) throws PyObject.ConversionException
asInt
in class PyObject
PyObject.ConversionException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |