BigInteger.this

Translates a byte array containing the two's-complement binary representation of a BigInteger into a BigInteger. The input array is assumed to be in <i>big-endian</i> byte-order: the most significant byte is in the zeroth element. The {@code val} array is assumed to be unchanged for the duration of the constructor call.

@param val big-endian two's-complement binary representation of a BigInteger. @throws NumberFormatException {@code val} is zero bytes long.

Meta