Serialized Form
_elements
RealNumber[] _elements
- The elements of this operation.
_radix
int _radix
- The radix for this number. The value of this field is always >= 2 and
<=
RealNumber.MAXIMUM_RADIX
.
_digits
int[] _digits
- An array containing the digits. This field is initialised by the
constructor.
_exponent
int _exponent
- The exponent for this number.
_bigInteger
java.math.BigInteger _bigInteger
- The
BigInteger
this
IntegerNumber
implementation is based on.
_hash
int _hash
- The hash code.
_numbers
RealNumber[] _numbers
- The numbers that cannot be compared. This array is not
null
and contains 2 non-null
elements.
_numerator
IntegerNumber _numerator
- The numerator. This field is initialized by the constructor, it can
never be
null
.
_denominator
IntegerNumber _denominator
- The denominator. This field is initialized by the constructor, it can
never be
null
.
_sign
int _sign
- The sign of this number. This field is initialized by the constructor.
The value of this field is -1, 0, or 1 as this number is negative,
zero, or positive.
The value of this field is returned by
RealNumber.getSign()
.
_asString
java.lang.String _asString
- Textual presentation of this number.
The value of this field is returned by
RealNumber.toString()
.
_value
int _value
- The
int
this IntegerNumber
implementation
is based on.
_elements
RealNumber[] _elements
- The operands for this sum. This field is never
null
and it
should never contain any null
elements. It is initialized
by the constructor. After that the contents should never change anymore.
See http://jump-math.sourceforge.net/.