Java BigDecimal Divide divide(BigDecimal left, BigDecimal right)

Here you can find the source of divide(BigDecimal left, BigDecimal right)

Description

divide

License

Open Source License

Declaration

public static BigDecimal divide(BigDecimal left, BigDecimal right) 

Method Source Code

//package com.java2s;
/**//from   w ww. ja v a 2  s .  c  o m
 *
 * Copyright (c) 2014, the Railo Company Ltd. All rights reserved.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either 
 * version 2.1 of the License, or (at your option) any later version.
 * 
 * This library 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
 * Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public 
 * License along with this library.  If not, see <http://www.gnu.org/licenses/>.
 * 
 **/

import java.math.BigDecimal;
import java.math.MathContext;

public class Main {
    public static BigDecimal divide(BigDecimal left, BigDecimal right) {
        try {
            return left.divide(right, BigDecimal.ROUND_UNNECESSARY);
        } catch (ArithmeticException ex) {
            return left.divide(right, MathContext.DECIMAL128);
        }
    }
}

Related

  1. divide(BigDecimal aValue1, BigDecimal aValue2, int scale)
  2. divide(BigDecimal bd1, BigDecimal bd2)
  3. divide(BigDecimal dividend, BigDecimal divisor)
  4. divide(BigDecimal dividend, BigDecimal divisor)
  5. divide(BigDecimal dividend, BigDecimal divisor, int scale)
  6. divide(BigDecimal num1, BigDecimal num2, int scale, int mode)
  7. divide(BigDecimal num1, BigDecimal num2, int scale, int roundingMode)
  8. divide(BigDecimal number1, BigDecimal number2, int decimalPlaces)
  9. divide(BigDecimal numerator, BigDecimal denominator)