Java BigDecimal Equal equals(BigDecimal decimal, double number)

Here you can find the source of equals(BigDecimal decimal, double number)

Description

equals

License

Apache License

Parameter

Parameter Description
decimal a parameter
number a parameter

Declaration

public static boolean equals(BigDecimal decimal, double number) 

Method Source Code


//package com.java2s;
/*/*from  www .  j  a v a  2 s  . c  om*/
 * Copyright 2014 the original author or authors.
 *
 * 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.
 *   
 * Create Date : 2014-9-27
 */

import java.math.BigDecimal;

public class Main {

    public static boolean equals(BigDecimal decimal, double number) {
        return equals(decimal, new BigDecimal(number));
    }

    public static boolean equals(BigDecimal decimal, float number) {
        return equals(decimal, new BigDecimal(number));
    }

    public static boolean equals(BigDecimal decimal, int number) {
        return equals(decimal, new BigDecimal(number));
    }

    public static boolean equals(BigDecimal decimal, long number) {
        return equals(decimal, new BigDecimal(number));
    }

    public static boolean equals(BigDecimal decimal, short number) {
        return equals(decimal, new BigDecimal(number));
    }

    public static boolean equals(BigDecimal decimal, byte number) {
        return equals(decimal, new BigDecimal(number));
    }

    public static boolean equals(BigDecimal decimal, char c) {
        return equals(decimal, new BigDecimal(c));
    }

    public static boolean equals(BigDecimal decimal1, BigDecimal decimal2) {
        if (decimal1 == null || decimal2 == null)
            return false;

        return decimal1.equals(decimal2);
    }
}

Related

  1. bigDecimalEquals(BigDecimal a, Number b)
  2. bigDecimalEqualsOrBothNull(BigDecimal obj1, BigDecimal obj2)
  3. equalBD(BigDecimal val1, BigDecimal val2)
  4. equals(BigDecimal a, BigDecimal b)
  5. equals(BigDecimal bd1, BigDecimal bd2)
  6. equals(BigDecimal left, BigDecimal right, int scale)
  7. Equals(BigDecimal one, BigDecimal two)
  8. equals(final BigDecimal b0, final BigDecimal b1, final double delta)
  9. equals(final BigDecimal pValue1, final BigDecimal pValue2)