Here you can find the source of isFirstBiggerThanSecond(final BigDecimal first, final BigDecimal second)
Parameter | Description |
---|---|
first | value |
second | value |
public static boolean isFirstBiggerThanSecond(final BigDecimal first, final BigDecimal second)
//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; } }