Java BigInteger to toInt(BigInteger number)

Here you can find the source of toInt(BigInteger number)

Description

to Int

License

Apache License

Declaration

static int toInt(BigInteger number) 

Method Source Code


//package com.java2s;
//License from project: Apache License 

import java.math.BigInteger;

public class Main {
    static int toInt(BigInteger number) {
        return number.intValue();
    }/*  ww w.  j  a v a2 s.  c o  m*/
}

Related

  1. toBytes(BigInteger bigInt, int expectedSize)
  2. toBytesUnsigned(final BigInteger bigInt)
  3. toDecimal(BigInteger value, byte[] buffer, int offset, int length, int itemLength, byte pos)
  4. toEvenLengthHex(BigInteger value)
  5. toFixedLenByteArray(BigInteger x, int resultByteLen)
  6. toInt(int length, BigInteger bi)
  7. toIntArray(BigInteger[] input)
  8. toInteger(BigInteger bi)
  9. toInteger(BigInteger integer)