Here you can find the source of isCovers(BigInteger covers, BigInteger value)
public static boolean isCovers(BigInteger covers, BigInteger value)
//package com.java2s; //License from project: Open Source License import java.math.BigInteger; public class Main { public static boolean isCovers(BigInteger covers, BigInteger value) { return covers.compareTo(value) > -1; }// w w w . ja va2s . co m }