Java BigDecimal Parse parseBigDecimal(Object o, BigDecimal defaulti)

Here you can find the source of parseBigDecimal(Object o, BigDecimal defaulti)

Description

parse Big Decimal

License

Open Source License

Declaration

public static BigDecimal parseBigDecimal(Object o, BigDecimal defaulti) 

Method Source Code

//package com.java2s;

import java.math.BigDecimal;

public class Main {
    public static BigDecimal parseBigDecimal(Object o, BigDecimal defaulti) {
        try {//  w  ww . ja v a  2 s  .  c  o  m
            return new BigDecimal(o.toString());
        } catch (Exception e) {
            return defaulti;
        }
    }
}

Related

  1. isBigDecimalType(Class type)
  2. isInteger(BigDecimal decimal)
  3. isInteger(BigDecimal inValue)
  4. isIntegerBigDecimal(BigDecimal bd)
  5. isIntegerValue(final BigDecimal bd)
  6. parseBigDecimal(Object obj)
  7. parseBigDecimal(Object value)
  8. parseBigDecimal(Object value)
  9. parseBigDecimal(String data)