All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.math.BigInteger Maven / Gradle / Ivy

The newest version!
package java.math;

public class BigInteger extends BigAny
{
	public BigInteger(String aString)
	{
		super(aString);
	}

	public BigInteger(double doubleValue)
	{
		super(doubleValue);
	}

	public static BigInteger valueOf(long val)
	{
		return new BigInteger(val);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy