-
signum
int signum
The signum of this BigInteger: -1 for negative, 0 for zero, or 1 for positive. Note that the BigInteger zero
must have a signum of 0. This is necessary to ensures that there is exactly one representation for each
BigInteger value.
-
mag
int[] mag
The magnitude of this BigInteger, in big-endian order: the zeroth element of this array is the
most-significant int of the magnitude. The magnitude must be "minimal" in that the most-significant int
(mag[0]
) must be non-zero. This is necessary to ensure that there is exactly one representation for each
BigInteger value. Note that this implies that the BigInteger zero has a zero-length mag array.
-
bitCount
int bitCount
Deprecated.
One plus the bitCount of this BigInteger. Zeros means unitialized.
- See Also:
bitCount
-
bitLength
int bitLength
Deprecated.
One plus the bitLength of this BigInteger. Zeros means unitialized. (either value is acceptable).
- See Also:
bitLength()
-
lowestSetBit
int lowestSetBit
Deprecated.
Two plus the lowest set bit of this BigInteger, as returned by getLowestSetBit().
- See Also:
getLowestSetBit()
-
firstNonzeroIntNum
int firstNonzeroIntNum
Deprecated.
Two plus the index of the lowest-order int in the magnitude of this BigInteger that contains a nonzero int, or -2
(either value is acceptable). The least significant int has int-number 0, the next int in order of increasing
significance has int-number 1, and so forth.