I have the following code in Java;
BigDecimal price; // assigned elsewhere if (price.compareTo(new BigDecimal(\"0.00\")) == 0) { return true; } <
BigDecimal price; // assigned elsewhere if (price.compareTo(new BigDecimal(\"0.00\")) == 0) { return true; }
Alternatively, signum() can be used:
if (price.signum() == 0) { return true; }