Java BigDecimal Format formatBigDecimal(BigDecimal bd, NumberFormat format)

Here you can find the source of formatBigDecimal(BigDecimal bd, NumberFormat format)

Description

Formatteert bd volgens format.

License

Open Source License

Declaration

public static String formatBigDecimal(BigDecimal bd, NumberFormat format) 

Method Source Code


//package com.java2s;
/*//from ww w  . jav a 2s  .  c om
 * B3P Commons Core is a library with commonly used classes for webapps.
 * Included are clieop3, oai, security, struts, taglibs and other
 * general helper classes and extensions.
 *
 * Copyright 2000 - 2008 B3Partners BV
 * 
 * This file is part of B3P Commons Core.
 * 
 * B3P Commons Core 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 3 of the License, or
 * (at your option) any later version.
 * 
 * B3P Commons Core 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 B3P Commons Core.  If not, see <http://www.gnu.org/licenses/>.
 */

import java.math.BigDecimal;

import java.text.NumberFormat;

public class Main {
    /**
     * Formatteert bd volgens format. Geeft lege String indien bd null is.
     */
    public static String formatBigDecimal(BigDecimal bd, NumberFormat format) {
        if (bd == null) {
            return "";
        } else {
            return format.format(bd.doubleValue());
        }
    }
}

Related

  1. formatAmount(BigDecimal amount)
  2. formatAmount(BigDecimal amount)
  3. formatAmount(final BigDecimal number)
  4. formatAsReadable(BigDecimal number)
  5. formatBetrag(BigDecimal bdBetrag, Locale locale)
  6. formatBigDecimal(BigDecimal bigDecimal)
  7. formatBigDecimal(BigDecimal bigDecimal, int scale)
  8. formatBigDecimal(BigDecimal d)
  9. formatBigDecimal(BigDecimal n, int dp)