Here you can find the source of equals(BigDecimal decimal, double number)
Parameter | Description |
---|---|
decimal | a parameter |
number | a parameter |
public static boolean equals(BigDecimal decimal, double number)
//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); } }