BigInteger

Undocumented in source.

Constructors

this
this(byte[] val)
Undocumented in source.
this
this(int signum, byte[] magnitude)
Undocumented in source.
this
this(int bitLength, int certainty, Random rnd)
Undocumented in source.
this
this(int numBits, Random rnd)
Undocumented in source.
this
this(String val)
Undocumented in source.
this
this(String val, int radix)
Undocumented in source.

Members

Functions

abs
BigInteger abs()
Undocumented in source. Be warned that the author may not have intended to support it.
add
BigInteger add(BigInteger val)
Undocumented in source. Be warned that the author may not have intended to support it.
and
BigInteger and(BigInteger val)
Undocumented in source. Be warned that the author may not have intended to support it.
andNot
BigInteger andNot(BigInteger val)
Undocumented in source. Be warned that the author may not have intended to support it.
bitCount
int bitCount()
Undocumented in source. Be warned that the author may not have intended to support it.
bitLength
int bitLength()
Undocumented in source. Be warned that the author may not have intended to support it.
clearBit
BigInteger clearBit(int n)
Undocumented in source. Be warned that the author may not have intended to support it.
compareTo
int compareTo(BigInteger val)
Undocumented in source. Be warned that the author may not have intended to support it.
compareTo
int compareTo(Object o)
Undocumented in source. Be warned that the author may not have intended to support it.
divide
BigInteger divide(BigInteger val)
Undocumented in source. Be warned that the author may not have intended to support it.
divideAndRemainder
BigInteger[] divideAndRemainder(BigInteger val)
Undocumented in source. Be warned that the author may not have intended to support it.
doubleValue
double doubleValue()
Undocumented in source. Be warned that the author may not have intended to support it.
equals
bool equals(Object x)
Undocumented in source. Be warned that the author may not have intended to support it.
flipBit
BigInteger flipBit(int n)
Undocumented in source. Be warned that the author may not have intended to support it.
floatValue
float floatValue()
Undocumented in source. Be warned that the author may not have intended to support it.
gcd
BigInteger gcd(BigInteger val)
Undocumented in source. Be warned that the author may not have intended to support it.
getLowestSetBit
int getLowestSetBit()
Undocumented in source. Be warned that the author may not have intended to support it.
hashCode
int hashCode()
Undocumented in source. Be warned that the author may not have intended to support it.
intValue
int intValue()
Undocumented in source. Be warned that the author may not have intended to support it.
isProbablePrime
bool isProbablePrime(int certainty)
Undocumented in source. Be warned that the author may not have intended to support it.
longValue
long longValue()
Undocumented in source. Be warned that the author may not have intended to support it.
max
BigInteger max(BigInteger val)
Undocumented in source. Be warned that the author may not have intended to support it.
min
BigInteger min(BigInteger val)
Undocumented in source. Be warned that the author may not have intended to support it.
mod
BigInteger mod(BigInteger m)
Undocumented in source. Be warned that the author may not have intended to support it.
modInverse
BigInteger modInverse(BigInteger m)
Undocumented in source. Be warned that the author may not have intended to support it.
modPow
BigInteger modPow(BigInteger exponent, BigInteger m)
Undocumented in source. Be warned that the author may not have intended to support it.
multiply
BigInteger multiply(BigInteger val)
Undocumented in source. Be warned that the author may not have intended to support it.
negate
BigInteger negate()
Undocumented in source. Be warned that the author may not have intended to support it.
not
BigInteger not()
Undocumented in source. Be warned that the author may not have intended to support it.
or
BigInteger or(BigInteger val)
Undocumented in source. Be warned that the author may not have intended to support it.
pow
BigInteger pow(int exponent)
Undocumented in source. Be warned that the author may not have intended to support it.
remainder
BigInteger remainder(BigInteger val)
Undocumented in source. Be warned that the author may not have intended to support it.
setBit
BigInteger setBit(int n)
Undocumented in source. Be warned that the author may not have intended to support it.
shiftLeft
BigInteger shiftLeft(int n)
Undocumented in source. Be warned that the author may not have intended to support it.
shiftRight
BigInteger shiftRight(int n)
Undocumented in source. Be warned that the author may not have intended to support it.
signum
int signum()
Undocumented in source. Be warned that the author may not have intended to support it.
subtract
BigInteger subtract(BigInteger val)
Undocumented in source. Be warned that the author may not have intended to support it.
testBit
bool testBit(int n)
Undocumented in source. Be warned that the author may not have intended to support it.
toByteArray
byte[] toByteArray()
Undocumented in source. Be warned that the author may not have intended to support it.
toString
String toString()
Undocumented in source. Be warned that the author may not have intended to support it.
toString
String toString(int radix)
Undocumented in source. Be warned that the author may not have intended to support it.
xor
BigInteger xor(BigInteger val)
Undocumented in source. Be warned that the author may not have intended to support it.

Static functions

probablePrime
BigInteger probablePrime(int bitLength, Random rnd)
Undocumented in source. Be warned that the author may not have intended to support it.
valueOf
BigInteger valueOf(long val)
Undocumented in source. Be warned that the author may not have intended to support it.

Static variables

ONE
BigInteger ONE;
Undocumented in source.
ZERO
BigInteger ZERO;
Undocumented in source.

Inherited Members

From Number

byteValue
byte byteValue()
Undocumented in source. Be warned that the author may not have intended to support it.
doubleValue
double doubleValue()
Undocumented in source.
floatValue
float floatValue()
Undocumented in source.
intValue
int intValue()
Undocumented in source.
longValue
long longValue()
Undocumented in source.
shortValue
short shortValue()
Undocumented in source. Be warned that the author may not have intended to support it.

Meta