Is one BigDecimal less than or equals to another BigDecimal - Java java.math

Java examples for java.math:BigDecimal Compare

Description

Is one BigDecimal less than or equals to another BigDecimal

Demo Code


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

public class Main {
    public static void main(String[] argv) throws Exception {
        BigDecimal d1 = new BigDecimal("1234");
        BigDecimal d2 = new BigDecimal("1234");
        System.out.println(le(d1, d2));
    }/* w w  w  . ja v a2s.  c  om*/

    public static boolean le(BigDecimal d1, BigDecimal d2) {
        return d1.compareTo(d2) <= 0;
    }
}

Related Tutorials