Here you can find the source of isLessThan(BigInteger valueA, BigInteger valueB)
Parameter | Description |
---|---|
valueA | - not null |
valueB | - not null |
public static boolean isLessThan(BigInteger valueA, BigInteger valueB)
//package com.java2s; //License from project: Open Source License import java.math.BigInteger; public class Main { /**/*from w ww . ja v a 2 s .co m*/ * @param valueA - not null * @param valueB - not null * @return true - if the valueA is less than valueB is zero */ public static boolean isLessThan(BigInteger valueA, BigInteger valueB) { return valueA.compareTo(valueB) < 0; } }