List of utility methods to do Double to Int
Integer | doubleToInteger(Double num) double To Integer return Math.round(Math.round(num));
|
String | doubleToIntString(final double value) double To Int String return intToString(new Double(value).intValue()); |