Java XML Data Type Converter printPositiveDecimal(BigDecimal value)

Here you can find the source of printPositiveDecimal(BigDecimal value)

Description

print Positive Decimal

License

Apache License

Declaration

public static String printPositiveDecimal(BigDecimal value) 

Method Source Code

//package com.java2s;
/*/* w w  w .  j  a va  2  s .co m*/
 * Copyright 2015-2016 OpenEstate.org.
 *
 * 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;

import javax.xml.bind.DatatypeConverter;

public class Main {
    public static String printPositiveDecimal(BigDecimal value) {
        // OpenImmo specifies positive decimal values including 0
        if (value == null || value.compareTo(BigDecimal.ZERO) < 0)
            throw new IllegalArgumentException("Can't print positive decimal value!");
        return printDecimal(value.setScale(2, BigDecimal.ROUND_HALF_UP));
    }

    public static String printDecimal(BigDecimal value) {
        if (value == null)
            throw new IllegalArgumentException("Can't print double value!");
        else
            return DatatypeConverter.printDecimal(value);
    }
}

Related

  1. mixColumns(byte[] input, boolean inv)
  2. printBytes(byte[] data)
  3. printDecimal(BigDecimal value, BigDecimal min, BigDecimal max, int precision, boolean zeroIncluded)
  4. printIntToInteger(int value)
  5. printLongitude(BigDecimal value)
  6. printPriceType(Long value)
  7. printZahl20(BigInteger value)
  8. printZahl31(BigDecimal value)
  9. printZimmeranzahl(BigDecimal value)