Here you can find the source of zeroOrMore(BigDecimal decimal)
Parameter | Description |
---|---|
decimal | a parameter |
public static boolean zeroOrMore(BigDecimal decimal)
//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; } }