Java BigDecimal zeroOrMore(BigDecimal decimal)

Here you can find the source of zeroOrMore(BigDecimal decimal)

Description

Kijkt of een decimal een waarde heeft die op of boven 0.0 ligt.

License

Open Source License

Parameter

Parameter Description
decimal a parameter

Return

true als de waarde groter gelijk aan BigDecimal.ZERO is, false in alle andere gevallen, dus ook bij null

Declaration

public static boolean zeroOrMore(BigDecimal decimal) 

Method Source Code


//package com.java2s;
import java.math.BigDecimal;

public class Main {
    /**/*from   w ww. j  a v a2s . c  om*/
     * Kijkt of een decimal een waarde heeft die op of boven 0.0 ligt.
     * 
     * @param decimal
     * @return true als de waarde groter gelijk aan BigDecimal.ZERO is, false in alle
     *         andere gevallen, dus ook bij null
     */
    public static boolean zeroOrMore(BigDecimal decimal) {
        return decimal != null && decimal.compareTo(BigDecimal.ZERO) >= 0;
    }
}

Related

  1. unformattedFromBigDecimal(BigDecimal n)
  2. unformattedToBigDecimal(String str)
  3. valueOf(final BigDecimal value)
  4. writeBigDecimal(BigDecimal val, DataOutput out)
  5. writeBigDecimal(final OutputStream out, @Nullable final BigDecimal value)