Package org.python.core
Class PyFloatDerived
java.lang.Object
org.python.core.PyObject
org.python.core.PyFloat
org.python.core.PyFloatDerived
- All Implemented Interfaces:
Serializable
,Slotted
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.python.core.PyObject
PyObject.ConversionException
-
Field Summary
Fields inherited from class org.python.core.PyFloat
exposed_name
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription__abs__()
Equivalent to the standard Python __abs__ method.Equivalent to the standard Python __add__ methodEquivalent to the standard Python __and__ methodThe basic method to override when implementing a callable object.int
Equivalent to the standard Python __cmp__ method.Equivalent to the standard Python __complex__ method.boolean
Equivalent to the standard Python __contains__ method.void
__delattr__
(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.Equivalent to the standard Python __div__ method__divmod__
(PyObject other) Equivalent to the standard Python __divmod__ methodEquivalent to the standard Python __eq__ method.__findattr__
(String name) A variant of the __findattr__ method which accepts a JavaString
as the name.__finditem__
(PyObject key) Very similar to the standard Python __getitem__ method.Equivalent to the standard Python __float__ method.__floordiv__
(PyObject other) Equivalent to the standard Python __floordiv__ methodEquivalent to the standard Python __ge__ method.__getslice__
(PyObject start, PyObject stop, PyObject step) Equivalent to the standard Python __gt__ method.__hex__()
Equivalent to the standard Python __hex__ method Should only be overridden by numeric objects that can be reasonably represented as a hexadecimal string.Equivalent to the standard Python __iadd__ methodEquivalent to the standard Python __iand__ methodEquivalent to the standard Python __idiv__ method__ifloordiv__
(PyObject other) Equivalent to the standard Python __ifloordiv__ method__ilshift__
(PyObject other) Equivalent to the standard Python __ilshift__ methodEquivalent to the standard Python __imod__ methodEquivalent to the standard Python __imul__ method__int__()
Equivalent to the standard Python __int__ method.Equivalent to the standard Python __invert__ method.Equivalent to the standard Python __ior__ methodEquivalent to the standard Python __ipow__ method__irshift__
(PyObject other) Equivalent to the standard Python __irshift__ methodEquivalent to the standard Python __isub__ method__iter__()
Return an iterator that is used to iterate the element of this sequence.Return the next element of the sequence that this is an iterator for.__itruediv__
(PyObject other) Equivalent to the standard Python __itruediv__ methodEquivalent to the standard Python __ixor__ methodEquivalent to the standard Python __le__ method.int
__len__()
Equivalent to the standard Python __len__ method.__long__()
Equivalent to the standard Python __long__ method.__lshift__
(PyObject other) Equivalent to the standard Python __lshift__ methodEquivalent to the standard Python __lt__ method.Equivalent to the standard Python __mod__ methodEquivalent to the standard Python __mul__ methodEquivalent to the standard Python __ne__ method.__neg__()
Equivalent to the standard Python __neg__ method.boolean
Equivalent to the standard Python __nonzero__ method.__oct__()
Equivalent to the standard Python __oct__ method.Equivalent to the standard Python __or__ method__pos__()
Equivalent to the standard Python __pos__ method.Equivalent to the standard Python __pow__ methodEquivalent to the standard Python __radd__ methodEquivalent to the standard Python __rand__ methodEquivalent to the standard Python __rdiv__ method__rdivmod__
(PyObject other) Equivalent to the standard Python __rdivmod__ methodUsed for pickling.__repr__()
Equivalent to the standard Python __repr__ method.__rfloordiv__
(PyObject other) Equivalent to the standard Python __rfloordiv__ method__rlshift__
(PyObject other) Equivalent to the standard Python __rlshift__ methodEquivalent to the standard Python __rmod__ methodEquivalent to the standard Python __rmul__ methodEquivalent to the standard Python __ror__ methodEquivalent to the standard Python __rpow__ method__rrshift__
(PyObject other) Equivalent to the standard Python __rrshift__ method__rshift__
(PyObject other) Equivalent to the standard Python __rshift__ methodEquivalent to the standard Python __rsub__ method__rtruediv__
(PyObject other) Equivalent to the standard Python __rtruediv__ methodEquivalent to the standard Python __rxor__ methodvoid
void
__setattr__
(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.__str__()
Equivalent to the standard Python __str__ method.Equivalent to the standard Python __sub__ method__truediv__
(PyObject other) Equivalent to the standard Python __truediv__ methodEquivalent to the standard Python __xor__ methodvoid
delDict()
void
dispatch__init__
(PyType type, PyObject[] args, String[] keywords) Dispatch __init__ behaviorxxx implements where meaningfulgetDict()
xxx implements where meaningfulgetSlot
(int index) int
hashCode()
void
void
toString()
Methods inherited from class org.python.core.PyFloat
__coerce_ex__, __pow__, __tojava__, float_new, getValue, isMappingType, isSequenceType, safeRepr, typeSetup
Methods inherited from class org.python.core.PyObject
__call__, __call__, __call__, __call__, __call__, __call__, __call__, __coerce__, __delattr__, __delitem__, __delslice__, __delslice__, __dir__, __findattr__, __finditem__, __finditem__, __getattr__, __getattr__, __getitem__, __getitem__, __getnewargs__, __getslice__, __hash__, __idivmod__, __not__, __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, isNumberType, noAttributeError, readonlyAttributeError, setType
-
Constructor Details
-
PyFloatDerived
-
-
Method Details
-
getSlot
-
setSlot
-
fastGetDict
Description copied from class:PyObject
xxx implements where meaningful- Overrides:
fastGetDict
in classPyObject
- Returns:
- internal object per instance dict or null
-
getDict
Description copied from class:PyObject
xxx implements where meaningful -
setDict
-
delDict
public void delDict() -
__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__
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. -
__hex__
Description copied from class:PyObject
Equivalent to the standard Python __hex__ method Should only be overridden by numeric objects that can be reasonably represented as a hexadecimal string. -
__oct__
Description copied from class:PyObject
Equivalent to the standard Python __oct__ method. Should only be overridden by numeric objects that can be reasonably represented as an octal string. -
__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. -
__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. -
__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 classPyFloat
- Returns:
- a complex number corresponding to the value of this object.
-
__pos__
Description copied from class:PyObject
Equivalent to the standard Python __pos__ method. -
__neg__
Description copied from class:PyObject
Equivalent to the standard Python __neg__ method. -
__abs__
Description copied from class:PyObject
Equivalent to the standard Python __abs__ method. -
__invert__
Description copied from class:PyObject
Equivalent to the standard Python __invert__ method.- Overrides:
__invert__
in classPyFloat
- Returns:
- ~this.
-
__reduce__
Description copied from class:PyObject
Used for pickling.- Overrides:
__reduce__
in classPyObject
- Returns:
- a tuple of (class, tuple)
-
__add__
Description copied from class:PyObject
Equivalent to the standard Python __add__ method -
__radd__
Description copied from class:PyObject
Equivalent to the standard Python __radd__ method -
__sub__
Description copied from class:PyObject
Equivalent to the standard Python __sub__ method -
__rsub__
Description copied from class:PyObject
Equivalent to the standard Python __rsub__ method -
__mul__
Description copied from class:PyObject
Equivalent to the standard Python __mul__ method -
__rmul__
Description copied from class:PyObject
Equivalent to the standard Python __rmul__ method -
__div__
Description copied from class:PyObject
Equivalent to the standard Python __div__ method -
__rdiv__
Description copied from class:PyObject
Equivalent to the standard Python __rdiv__ method -
__floordiv__
Description copied from class:PyObject
Equivalent to the standard Python __floordiv__ method- Overrides:
__floordiv__
in classPyFloat
- Parameters:
other
- 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__
Description copied from class:PyObject
Equivalent to the standard Python __rfloordiv__ method- Overrides:
__rfloordiv__
in classPyFloat
- Parameters:
other
- 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__
Description copied from class:PyObject
Equivalent to the standard Python __truediv__ method- Overrides:
__truediv__
in classPyFloat
- Parameters:
other
- 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__
Description copied from class:PyObject
Equivalent to the standard Python __rtruediv__ method- Overrides:
__rtruediv__
in classPyFloat
- Parameters:
other
- 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__
Description copied from class:PyObject
Equivalent to the standard Python __mod__ method -
__rmod__
Description copied from class:PyObject
Equivalent to the standard Python __rmod__ method -
__divmod__
Description copied from class:PyObject
Equivalent to the standard Python __divmod__ method- Overrides:
__divmod__
in classPyFloat
- Parameters:
other
- 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__
Description copied from class:PyObject
Equivalent to the standard Python __rdivmod__ method- Overrides:
__rdivmod__
in classPyFloat
- Parameters:
other
- 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__
Description copied from class:PyObject
Equivalent to the standard Python __pow__ method -
__rpow__
Description copied from class:PyObject
Equivalent to the standard Python __rpow__ method -
__lshift__
Description copied from class:PyObject
Equivalent to the standard Python __lshift__ method- Overrides:
__lshift__
in classPyObject
- Parameters:
other
- 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
-
__rlshift__
Description copied from class:PyObject
Equivalent to the standard Python __rlshift__ method- Overrides:
__rlshift__
in classPyObject
- Parameters:
other
- the object to perform this binary operation with (the left-hand operand).- Returns:
- the result of the lshift, or null if this operation is not defined.
-
__rshift__
Description copied from class:PyObject
Equivalent to the standard Python __rshift__ method- Overrides:
__rshift__
in classPyObject
- Parameters:
other
- 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
-
__rrshift__
Description copied from class:PyObject
Equivalent to the standard Python __rrshift__ method- Overrides:
__rrshift__
in classPyObject
- Parameters:
other
- the object to perform this binary operation with (the left-hand operand).- Returns:
- the result of the rshift, or null if this operation is not defined.
-
__and__
Description copied from class:PyObject
Equivalent to the standard Python __and__ method -
__rand__
Description copied from class:PyObject
Equivalent to the standard Python __rand__ method -
__or__
Description copied from class:PyObject
Equivalent to the standard Python __or__ method -
__ror__
Description copied from class:PyObject
Equivalent to the standard Python __ror__ method -
__xor__
Description copied from class:PyObject
Equivalent to the standard Python __xor__ method -
__rxor__
Description copied from class:PyObject
Equivalent to the standard Python __rxor__ method -
__lt__
Description copied from class:PyObject
Equivalent to the standard Python __lt__ method. -
__le__
Description copied from class:PyObject
Equivalent to the standard Python __le__ method. -
__gt__
Description copied from class:PyObject
Equivalent to the standard Python __gt__ method. -
__ge__
Description copied from class:PyObject
Equivalent to the standard Python __ge__ method. -
__eq__
Description copied from class:PyObject
Equivalent to the standard Python __eq__ method. -
__ne__
Description copied from class:PyObject
Equivalent to the standard Python __ne__ method. -
__iadd__
Description copied from class:PyObject
Equivalent to the standard Python __iadd__ method -
__isub__
Description copied from class:PyObject
Equivalent to the standard Python __isub__ method -
__imul__
Description copied from class:PyObject
Equivalent to the standard Python __imul__ method -
__idiv__
Description copied from class:PyObject
Equivalent to the standard Python __idiv__ method -
__ifloordiv__
Description copied from class:PyObject
Equivalent to the standard Python __ifloordiv__ method- Overrides:
__ifloordiv__
in classPyObject
- Parameters:
other
- 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
-
__itruediv__
Description copied from class:PyObject
Equivalent to the standard Python __itruediv__ method- Overrides:
__itruediv__
in classPyObject
- Parameters:
other
- 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
-
__imod__
Description copied from class:PyObject
Equivalent to the standard Python __imod__ method -
__ipow__
Description copied from class:PyObject
Equivalent to the standard Python __ipow__ method -
__ilshift__
Description copied from class:PyObject
Equivalent to the standard Python __ilshift__ method- Overrides:
__ilshift__
in classPyObject
- Parameters:
other
- 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
-
__irshift__
Description copied from class:PyObject
Equivalent to the standard Python __irshift__ method- Overrides:
__irshift__
in classPyObject
- Parameters:
other
- 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
-
__iand__
Description copied from class:PyObject
Equivalent to the standard Python __iand__ method -
__ior__
Description copied from class:PyObject
Equivalent to the standard Python __ior__ method -
__ixor__
Description copied from class:PyObject
Equivalent to the standard Python __ixor__ method -
__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. -
toString
-
hashCode
public int hashCode() -
__unicode__
- Overrides:
__unicode__
in classPyObject
-
__cmp__
Description copied from class:PyObject
Equivalent to the standard Python __cmp__ 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 classPyFloat
-
__contains__
Description copied from class:PyObject
Equivalent to the standard Python __contains__ method.- Overrides:
__contains__
in classPyObject
- Parameters:
o
- the element to search for in this container.- Returns:
- the result of the search.
-
__len__
public int __len__()Description copied from class:PyObject
Equivalent to the standard Python __len__ method. Part of the mapping discipline. -
__iter__
Description copied from class:PyObject
Return an iterator that is used to iterate the element of this sequence. From version 2.2, this method is the primary protocol for looping over sequences.If 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 }
-
__iternext__
Description copied from class:PyObject
Return the next element of the sequence that this is an iterator for. Returns null when the end of the sequence is reached.- Overrides:
__iternext__
in classPyObject
-
__finditem__
Description copied from class:PyObject
Very similar to the standard Python __getitem__ method. Instead of throwing a KeyError if the item isn't found, this just returns null. Classes that wish to implement __getitem__ should override this method instead (with the appropriate semantics.- Overrides:
__finditem__
in classPyObject
- Parameters:
key
- the key to lookup in this container- Returns:
- the value corresponding to key or null if key is not found
-
__setitem__
Description copied from class:PyObject
Equivalent to the standard Python __setitem__ method.- Overrides:
__setitem__
in classPyObject
- Parameters:
key
- the key whose value will be setvalue
- the value to set this key to
-
__getslice__
- Overrides:
__getslice__
in classPyObject
-
__delitem__
Description copied from class:PyObject
Equivalent to the standard Python __delitem__ method.- Overrides:
__delitem__
in classPyObject
- Parameters:
key
- the key to be removed from the container
-
__call__
Description copied from class:PyObject
The basic method to override when implementing a callable object. The first len(args)-len(keywords) members of args[] are plain arguments. The last len(keywords) arguments are the values of the keyword arguments. -
__findattr__
Description copied from class:PyObject
A variant of the __findattr__ method which accepts a JavaString
as the name. Warning: name must be an interned string!- Overrides:
__findattr__
in classPyObject
- Parameters:
name
- the name to lookup in this namespace must be an interned string .- Returns:
- the value corresponding to name or null if name is not found
- See Also:
-
__setattr__
Description copied from class:PyObject
A variant of the __setattr__ method which accepts a String as the key. This String must be interned.- Overrides:
__setattr__
in classPyObject
- Parameters:
name
- the name whose value will be set - must be an interned string .value
- the value to set this name to- See Also:
-
__delattr__
Description copied from class:PyObject
A variant of the __delattr__ method which accepts a String as the key. This String must be interned. By default, this will call__delattr__(PyString name)
with the appropriate args. The only reason to override this method is for performance.- Overrides:
__delattr__
in classPyObject
- Parameters:
name
- the name which will be removed - must be an interned string .- See Also:
-
__get__
-
__set__
-
__delete__
- Overrides:
__delete__
in classPyObject
-
dispatch__init__
Description copied from class:PyObject
Dispatch __init__ behavior- Overrides:
dispatch__init__
in classPyObject
-