Java BigDecimal Compare isGreaterThanOne(@Nonnull final BigDecimal aValue)

Here you can find the source of isGreaterThanOne(@Nonnull final BigDecimal aValue)

Description

is Greater Than One

License

Apache License

Parameter

Parameter Description
aValue Value to compare. May not be <code>null</code>.

Return

true if the value is > 1.

Declaration

public static boolean isGreaterThanOne(@Nonnull final BigDecimal aValue) 

Method Source Code

//package com.java2s;
/**/*  ww w  .  ja  v  a 2  s .  c  o  m*/
 * Copyright (C) 2014-2017 Philip Helger (www.helger.com)
 * philip[at]helger[dot]com
 *
 * 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;
import java.math.BigInteger;

import javax.annotation.Nonnull;

public class Main {
    /**
     * @param aValue
     *        Value to compare. May not be <code>null</code>.
     * @return <code>true</code> if the value is &gt; 1.
     */
    public static boolean isGreaterThanOne(@Nonnull final BigDecimal aValue) {
        return aValue.compareTo(BigDecimal.ONE) > 0;
    }

    /**
     * @param aValue
     *        Value to compare. May not be <code>null</code>.
     * @return <code>true</code> if the value is &gt; 1.
     */
    public static boolean isGreaterThanOne(@Nonnull final BigInteger aValue) {
        return aValue.compareTo(BigInteger.ONE) > 0;
    }
}

Related

  1. greaterThan(BigDecimal val, double threshold)
  2. GreaterThanOrEqual(BigDecimal one, BigDecimal two)
  3. greaterThanZero(BigDecimal d)
  4. greaterThanZero(BigDecimal is)
  5. isGreater(BigDecimal a, BigDecimal b)
  6. lessThan(BigDecimal val1, BigDecimal val2)
  7. lessThanZero(BigDecimal decimal)