Here you can find the source of createBigInteger(final String value)
Parameter | Description |
---|---|
value | is the string representation of the new big-integer. |
public static BigInteger createBigInteger(final String value)
//package com.java2s; //License from project: Apache License import java.math.BigInteger; public class Main { /**/*from w ww .java2 s .c o m*/ * This method creates a new big-integer. * * <p> * This method is used to implement big-integer literals. * </p> * * @param value is the string representation of the new big-integer. * @return the value as a big-integer. */ public static BigInteger createBigInteger(final String value) { return new BigInteger(value); } }