Java BigDecimal nvl(final BigDecimal bigDecimal)

Here you can find the source of nvl(final BigDecimal bigDecimal)

Description

Returns zero when the given BigDecimal is null

License

Open Source License

Declaration

public static BigDecimal nvl(final BigDecimal bigDecimal) 

Method Source Code


//package com.java2s;
/*/*from   w w w  . ja  v a  2  s . c  o  m*/
This file is part of Cyclos (www.cyclos.org).
A project of the Social Trade Organisation (www.socialtrade.org).
    
Cyclos is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
    
Cyclos is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
    
You should have received a copy of the GNU General Public License
along with Cyclos; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
    
 */

import java.math.BigDecimal;

public class Main {
    /**
     * Returns zero when the given BigDecimal is null
     */
    public static BigDecimal nvl(final BigDecimal bigDecimal) {
        return bigDecimal == null ? BigDecimal.ZERO : bigDecimal;
    }
}

Related

  1. mod(long res, BigDecimal value)
  2. movePoint(final BigDecimal v1, final int shift)
  3. moveRight(BigDecimal value, int offset)
  4. nullSafeCompare(BigDecimal pPremierNombre, BigDecimal pSecondNombre)
  5. numberToWordsWithDecimal(BigDecimal value)
  6. nvlZero(BigDecimal num)
  7. objectToBigDecimal(Object object)
  8. objToBigDecimal(Object obj)
  9. PackUnit2Uom(BigDecimal packUit, String eachUnitName)