Here you can find the source of isLessOrEqualThanZero(BigDecimal value)
public static boolean isLessOrEqualThanZero(BigDecimal value)
//package com.java2s; //License from project: Apache License import java.math.BigDecimal; public class Main { public static boolean isLessOrEqualThanZero(BigDecimal value) { return value.compareTo(BigDecimal.ZERO) <= 0; }/*w w w . ja va 2 s .com*/ }