Java BigDecimal Value Check isFirstBiggerThanSecond(final BigDecimal first, final BigDecimal second)

Here you can find the source of isFirstBiggerThanSecond(final BigDecimal first, final BigDecimal second)

Description

is First Bigger Than Second

License

Apache License

Parameter

Parameter Description
first value
second value

Return

true if first is greater than second (null safe)

Declaration

public static boolean isFirstBiggerThanSecond(final BigDecimal first, final BigDecimal second) 

Method Source Code


//package com.java2s;
/*//from  www.  java  2s  .c o  m
 * 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 greater than second (null safe)
     */
    public static boolean isFirstBiggerThanSecond(final BigDecimal first, final BigDecimal second) {

        if (first == null && second == null) {
            return false;
        } else if (second == null) {
            return true;
        } else if (first == null) {
            return false;
        }
        return first.compareTo(second) > 0;

    }
}

Related

  1. isBlank(BigDecimal value)
  2. isDivisible(BigDecimal num1, BigDecimal num2)
  3. isDouble(BigDecimal number)
  4. isDoubleOverFlow(final BigDecimal decimal)
  5. isExact(final BigDecimal bd)
  6. isFirstEqualToSecond(final BigDecimal first, final BigDecimal second)
  7. isJavaMathBigDecimal(Object value)
  8. isLessOrEqualThanZero(BigDecimal value)
  9. isLessThan(final BigDecimal thiss, final BigDecimal that)