nanoseconds to seconds (double) custom decimals @param ms the nanoseconds @param p number of decimal points @return a formatted string to nanoseconds
(long ns, int p)
| 1238 | * @return a formatted string to nanoseconds |
| 1239 | */ |
| 1240 | public static String nsMsd(long ns, int p) { |
| 1241 | return fd((double) ns / 1000000.0, p); |
| 1242 | } |
| 1243 | |
| 1244 | /** |
| 1245 | * Get roman numeral representation of the int |