Exemplo n.º 1
0
 /**
  * Convert a String containing a numeric rate into the form x000...000nnnnmmmmmmmm000...000 where
  * nnnn.mmmmmmmm is passed and x can be a negative sign
  *
  * @param ns - numeric string
  * @param intLen - the length of the integer part
  * @param decLen - the length of the decimal part
  * @return the formatted numeric string
  */
 public static String formatDouble(String ns, int intLen, int decLen) {
   return Toolbox.formatDouble(ns, intLen, decLen);
 }