Java BigInteger Create createBigInteger(final String value)

Here you can find the source of createBigInteger(final String value)

Description

This method creates a new big-integer.

License

Apache License

Parameter

Parameter Description
value is the string representation of the new big-integer.

Return

the value as a big-integer.

Declaration

public static BigInteger createBigInteger(final String value) 

Method Source Code

//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);
    }
}

Related

  1. Create(BigInteger value)
  2. createBigInteger(final String str)
  3. createBigInteger(final String str)
  4. createBigInteger(String str)
  5. createBigInteger(String str)
  6. hexToBigInteger(String hex)
  7. hexToBigInteger(String hex)