Java BigDecimal to convertStringToBigDecimal(String strValue)

Here you can find the source of convertStringToBigDecimal(String strValue)

Description

convert String To Big Decimal

License

Open Source License

Parameter

Parameter Description
strValue a parameter

Declaration

public static BigDecimal convertStringToBigDecimal(String strValue) 

Method Source Code

//package com.java2s;
import java.math.BigDecimal;

public class Main {
    /**/*from  w ww . j  ava 2  s.c o  m*/
     * @param strValue
     * @return
     */
    public static BigDecimal convertStringToBigDecimal(String strValue) {
        BigDecimal bgValue = new BigDecimal(strValue);
        return bgValue;
    }
}

Related

  1. convertHoursToMillis(BigDecimal hours)
  2. convertNullToBigDecimal(Object orgStr)
  3. convertRadiansToDegrees(BigDecimal radians)
  4. convertRating(BigDecimal rating)
  5. convertSecondsToMillis(BigDecimal seconds)
  6. convertToBigDecimal(final Object o)
  7. convertToBigDecimal(Object sourceValue)
  8. convertToBigDecimal(String s)
  9. convertToBigDecimal(String val)