Java BigDecimal from numberToBigDecimal(Object obj)

Here you can find the source of numberToBigDecimal(Object obj)

Description

number To Big Decimal

License

Open Source License

Declaration

public static BigDecimal numberToBigDecimal(Object obj) 

Method Source Code


//package com.java2s;
/*/*from ww  w  .jav  a2 s.  com*/
 * Este programa es software libre; usted puede redistribuirlo y/o modificarlo bajo los terminos
 * de la licencia "GNU General Public License" publicada por la Fundacion "Free Software Foundation".
 * Este programa se distribuye con la esperanza de que pueda ser util, pero SIN NINGUNA GARANTIA;
 * vea la licencia "GNU General Public License" para obtener mas informacion.
 */

import java.math.BigDecimal;
import java.math.BigInteger;

public class Main {
    public static BigDecimal numberToBigDecimal(Object obj) {
        return obj instanceof Number ? newBigDecimal(obj) : null;
    }

    public static BigDecimal newBigDecimal(Object obj) {
        if (obj == null) {
            return null;
        } else if (obj instanceof Byte) {
            Byte pdq = (Byte) obj;
            return new BigDecimal(pdq.intValue());
        } else if (obj instanceof Short) {
            Short pdq = (Short) obj;
            return new BigDecimal(pdq.intValue());
        } else if (obj instanceof Integer) {
            Integer pdq = (Integer) obj;
            return new BigDecimal(pdq);
        } else if (obj instanceof Long) {
            Long pdq = (Long) obj;
            return new BigDecimal(pdq);
        } else if (obj instanceof Float) {
            Float pdq = (Float) obj;
            return new BigDecimal(pdq.doubleValue());
        } else if (obj instanceof Double) {
            Double pdq = (Double) obj;
            return new BigDecimal(pdq);
        } else if (obj instanceof BigInteger) {
            BigInteger pdq = (BigInteger) obj;
            return new BigDecimal(pdq);
        } else if (obj instanceof BigDecimal) {
            BigDecimal pdq = (BigDecimal) obj;
            return BigDecimal.ZERO.add(pdq);
        } else if (obj instanceof String) {
            String pdq = (String) obj;
            return pdq.trim().isEmpty() ? null : new BigDecimal(pdq);
        } else {
            return new BigDecimal(obj.toString());
        }
    }
}

Related

  1. doubleToBigDecimal(double dd)
  2. longToBigDecimal(long amountAsSatoshis)
  3. numberToBigDecimal(Number number)
  4. numberToBigDecimal(Number value)
  5. numberToBigDecimal(Object number)
  6. toBigDecimal(byte[] bytes)
  7. toBigDecimal(Double d)
  8. toBigDecimal(Double d)
  9. toBigDecimal(double val)