Java BigDecimal stripTrailingZeros(BigDecimal bigDecimal)

Here you can find the source of stripTrailingZeros(BigDecimal bigDecimal)

Description

strip Trailing Zeros

License

Apache License

Declaration

public static BigDecimal stripTrailingZeros(BigDecimal bigDecimal) 

Method Source Code

//package com.java2s;
/*/*from  w w  w .  ja v a  2s  . co  m*/
 Copyright 2015 RoboterHund87
    
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at
    
 http://www.apache.org/licenses/LICENSE-2.0
    
 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
 */

import java.math.BigDecimal;

public class Main {
    public static BigDecimal stripTrailingZeros(BigDecimal bigDecimal) {
        if (bigDecimal.compareTo(BigDecimal.ZERO) == 0) {
            return BigDecimal.ZERO;
        } else {
            return bigDecimal.stripTrailingZeros();
        }
    }
}

Related

  1. stddev(List numbers, boolean biasCorrected, MathContext context)
  2. stdDevMaxFromMapField(List> dataList, String fieldName, BigDecimal stdDevMultiplier)
  3. Str2BigDecimal(String a)
  4. str2BigDicimal(String strbigdecimal)
  5. stripAndOrRescale(BigDecimal value)
  6. stripTrailingZeros(BigDecimal value)
  7. stripTrailingZeros(final BigDecimal decimal)
  8. strToBigDecimal(final String arg)
  9. strValueBigDecimal(Number number)