Java BigDecimal Equal isEqual(BigDecimal value1, BigDecimal value2)

Here you can find the source of isEqual(BigDecimal value1, BigDecimal value2)

Description

Compares this value1 to value2.

License

Open Source License

Parameter

Parameter Description
value1 a parameter
value2 a parameter

Return

true if value1 equals value2, false otherwise

Declaration

public static boolean isEqual(BigDecimal value1, BigDecimal value2) 

Method Source Code


//package com.java2s;
/*//from  w  ww .  j  av a2s. c  o m
 * Utility class to simplify the use of BigDecimals
 * Copyright (C) 2012 Martin Absmeier, IT Consulting Services
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

import java.math.BigDecimal;

public class Main {
    /**
     * Compares this value1 to value2.<br>
     * 
     * @param value1
     *            
     * @param value2
     * @return true if value1 equals value2, false otherwise
     */
    public static boolean isEqual(BigDecimal value1, BigDecimal value2) {
        return value1.compareTo(value2) == 0;
    }
}

Related

  1. equals(final BigDecimal b0, final BigDecimal b1, final double delta)
  2. equals(final BigDecimal pValue1, final BigDecimal pValue2)
  3. equalsBigDecimal(BigDecimal bd1, BigDecimal bd2)
  4. isEqual(BigDecimal aLhs, BigDecimal aRhs)
  5. isEqual(BigDecimal n1, BigDecimal n2, int precision)
  6. isEqual(final BigDecimal value1, final BigDecimal value2)
  7. isEqualsToZero(BigDecimal value)