Java BigDecimal readBigDecimal(final Object object)

Here you can find the source of readBigDecimal(final Object object)

Description

read Big Decimal

License

Open Source License

Declaration

public static BigDecimal readBigDecimal(final Object object) 

Method Source Code


//package com.java2s;
/*/*ww  w  .  ja va2s  .  co  m*/
 * This 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 software 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 software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */

import java.math.BigDecimal;

public class Main {
    public static BigDecimal readBigDecimal(final Object object) {
        if (object != null) {
            return new BigDecimal((String) object);
        } else {
            return null;
        }
    }
}

Related

  1. randomBigDecimal()
  2. randomBigDecimalList(BigDecimal min, BigDecimal max, int minLength, int maxLength)
  3. rangedValue(BigDecimal lower, BigDecimal upper, Random random)
  4. readBigDecimal(byte valueBytes[], int valueLength, int scale)
  5. readBigDecimal(DataInput in)
  6. releaseNull(BigDecimal amount)
  7. removeTrailingZeros(final BigDecimal bd)
  8. removeVAT(int priceInCents, BigDecimal vat)
  9. reverseSign(BigDecimal decimal)