Here you can find the source of isFirstEqualToSecond(final BigDecimal first, final BigDecimal second)
Parameter | Description |
---|---|
first | value |
second | value |
public static boolean isFirstEqualToSecond(final BigDecimal first, final BigDecimal second)
//package com.java2s; /*//from w w w .j a v a 2 s.com * Copyright 2009 Igor Azarnyi, Denys Pavlov * * 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; public class Main { /** * @param first value * @param second value * @return true if first is equal to second (null safe) */ public static boolean isFirstEqualToSecond(final BigDecimal first, final BigDecimal second) { if (first == null && second == null) { return false; } else if (second == null) { return false; } else if (first == null) { return false; } return first.compareTo(second) == 0; } /** * @param first value * @param second value * @param scale scale * @return true if first is equal to second (null safe) */ public static boolean isFirstEqualToSecond(final BigDecimal first, final BigDecimal second, final int scale) { if (first == null && second == null) { return false; } else if (second == null) { return false; } else if (first == null) { return false; } return first.setScale(scale).compareTo(second.setScale(scale)) == 0; } }