Format hertz into a string to a rounded string representation. @param hertz Hertz. @return Rounded string representation of the hertz size.
(long hertz)
| 145 | * @return Rounded string representation of the hertz size. |
| 146 | */ |
| 147 | public static String formatHertz(long hertz) { |
| 148 | return formatValue(hertz, "Hz"); |
| 149 | } |
| 150 | |
| 151 | /** |
| 152 | * Format arbitrary units into a string to a rounded string representation. |