BigInteger.this

Translates the decimal string representation of a BigInteger into a BigInteger. The string representation consists of an optional minus sign followed by a sequence of one or more decimal digits. The character-to-digit mapping is provided by {@code CharacterHelper.digit}. The string may not contain any extraneous characters (whitespace, for example).

@param val decimal string representation of BigInteger. @throws NumberFormatException {@code val} is not a valid representation of a BigInteger. @see Character#digit

Meta