How can I compare if BigDecimal value is greater than zero?
BigDecimal
using ".intValue()" on BigDecimal object is not right when you want to check if its grater than zero. The only option left is ".compareTo()" method.