Searched defs:BigInteger (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/java/math/
H A DBigInteger.java41 public class BigInteger extends Number class in inherits:Number,Comparable,Serializable
42 implements Comparable<BigInteger>, Serializable {
65 /** The {@code BigInteger} constant 0. */
66 public static final BigInteger ZERO = new BigInteger(0, 0);
68 /** The {@code BigInteger} constant 1. */
69 public static final BigInteger ONE = new BigInteger(1, 1);
71 /** The {@code BigInteger} constant 10. */
72 public static final BigInteger TE
94 BigInteger(BigInt bigInt) { method in class:BigInteger
101 BigInteger(int sign, long value) { method in class:BigInteger
115 BigInteger(int sign, int numberLength, int[] digits) { method in class:BigInteger
127 public BigInteger(int numBits, Random random) { method in class:BigInteger
163 public BigInteger(int bitLength, int certainty, Random random) { method in class:BigInteger
215 public BigInteger(String value) { method in class:BigInteger
234 public BigInteger(String value, int radix) { method in class:BigInteger
269 public BigInteger(int signum, byte[] magnitude) { method in class:BigInteger
299 public BigInteger(byte[] value) { method in class:BigInteger
[all...]

Completed in 69 milliseconds