Convert weight in pounds to display weight in units. @param weightInPounds @return String display weight in units.
(final double weightInPounds)
| 303 | * @return String display weight in units. |
| 304 | */ |
| 305 | public String displayWeightInUnitSet(final double weightInPounds) |
| 306 | { |
| 307 | return weightDisplayPattern.format(convertWeightToUnitSet(weightInPounds)); |
| 308 | } |
| 309 | |
| 310 | @Override |
| 311 | public URI getSourceURI() |
no test coverage detected