Here you can find the source of isZero(BigDecimal decimal)
Parameter | Description |
---|---|
decimal | a parameter |
public static final boolean isZero(BigDecimal decimal)
//package com.java2s; import java.math.BigDecimal; public class Main { /**//from w w w . j av a2 s.c o m * @param decimal * @return true als de waarde 0 is */ public static final boolean isZero(BigDecimal decimal) { return decimal.compareTo(BigDecimal.ZERO) == 0; } }