Java BigDecimal Value Check isZero(BigDecimal d)

Here you can find the source of isZero(BigDecimal d)

Description

is Zero

License

Open Source License

Declaration

public static Boolean isZero(BigDecimal d) 

Method Source Code


//package com.java2s;
//License from project: Open Source License 

import java.math.BigDecimal;

public class Main {
    public static Boolean isZero(BigDecimal d) {
        return d.equals(BigDecimal.ZERO);
    }/*  www . ja v a 2s. c om*/
}

Related

  1. isUnscaledValueEqualsOriginal(BigDecimal bigDecimal, BigInteger bigInteger)
  2. isValidDecimal(BigDecimal bd)
  3. isValidLongitude(BigDecimal value)
  4. isValueEquals(BigDecimal decimal1, BigDecimal decimal2)
  5. isZero(BigDecimal bd)
  6. isZero(BigDecimal decimal)
  7. isZero(BigDecimal inValue)
  8. isZero(final BigDecimal b)
  9. isZero(final BigDecimal value)