Java BigDecimal Round round(BigDecimal value)

Here you can find the source of round(BigDecimal value)

Description

round

License

Apache License

Declaration

public static BigDecimal round(BigDecimal value) 

Method Source Code

//package com.java2s;
/**//  w  w  w  . j av a 2 s  .c  o  m
 *    Copyright (C) 2010 - 2014 VREM Software Development <VREMSoftwareDevelopment@gmail.com>
 *
 *    Licensed under the Apache License, Version 2.0 (the "License");
 *    you may not use this file except in compliance with the License.
 *    You may obtain a copy of the License at
 *
 *        http://www.apache.org/licenses/LICENSE-2.0
 *
 *    Unless required by applicable law or agreed to in writing, software
 *    distributed under the License is distributed on an "AS IS" BASIS,
 *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *    See the License for the specific language governing permissions and
 *    limitations under the License.
 */

import java.math.BigDecimal;

public class Main {
    public static BigDecimal ZERO_VALUE = new BigDecimal(0).setScale(2, BigDecimal.ROUND_HALF_UP);

    public static BigDecimal round(double value) {
        return new BigDecimal(value).setScale(2, BigDecimal.ROUND_HALF_UP);
    }

    public static BigDecimal round(BigDecimal value) {
        if (value == null) {
            return ZERO_VALUE;
        }
        return round(value.doubleValue());
    }
}

Related

  1. round(BigDecimal money, int scale)
  2. round(BigDecimal num, int scale)
  3. round(BigDecimal number)
  4. round(BigDecimal v, int scale, int roundingMode)
  5. round(BigDecimal value)
  6. round(BigDecimal value, BigDecimal increment, RoundingMode roundingMode)
  7. round(BigDecimal value, int accuracy)
  8. round(BigDecimal value, int places)
  9. round(BigDecimal value, String currency)