I\'m getting the following exception.
Caused by:
java.lang.ClassCastException: java.math.BigInteger cannot be cast to java.lang.Integer
You can try this:
((BigDecimal) volume).intValue();
I use java.math.BigDecimal convert to int (primitive type).
It is worked for me.
The column in the database is probably a DECIMAL. You should process it as a BigInteger, not an Integer, otherwise you are losing digits. Or else change the column to int.
java.lang.Integer is not a super class of BigInteger. Both BigInteger and Integer do inherit from java.lang.Number, so you could cast to a java.lang.Number.
See the java docs http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Number.html
You can use:
Integer grandChildCount = ((BigInteger) result[1]).intValue();
Or perhaps cast to Number to cover both Integer and BigInteger values.
As we see from the javaDoc, BigInteger is not a subclass of Integer:
java.lang.Object java.lang.Object
java.lang.Number java.lang.Number
java.math.BigInteger java.lang.Integer
And that's the reason why casting from BigInteger to Integer is impossible.
Casting of java primitives will do some conversion (like casting from double to int) while casting of types will never transform classes.