I need to display a dollar value with the following requirements.
- If the value is less than a dollar, place a leading zero. e.g 0.55
- If the value has no cents, place two trailing zeros. e.g. 100.00
- Here's the tricky part. The value may be less than a cent, in which case it should be printed as-is. e.g 0.005
Is it possible to implement this with DecimalFormat? If it wasn't for the last requirement, a pattern of "0.00" would do, but I'm not sure how to do the last.