Java Utililty Methods Double to Int

List of utility methods to do Double to Int

Description

The list of methods to do Double to Int are organized into topic(s).

Method

IntegerdoubleToInteger(Double num)
double To Integer
return Math.round(Math.round(num));
StringdoubleToIntString(final double value)
double To Int String
return intToString(new Double(value).intValue());