I found BigDecimal have setScale method, but doesn't have getScale method. How to getScale on BigDecimal?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You have the scale() (not getScale in this case) method in BigDecimal which returns the scale set by setScale(..). See: http://java.sun.com/j2se/1.5.0/docs/api/java/math/BigDecimal.html#scale() |
|||
|
|
|
|||
|
|