Searched refs:bigInt (Results 1 – 3 of 3) sorted by relevance
147 private static int bigIntegerToInt(BigInteger bigInt) throws CertificateParsingException { in bigIntegerToInt() argument148 if (bigInt.compareTo(BigInteger.valueOf(Integer.MAX_VALUE)) > 0 in bigIntegerToInt()149 || bigInt.compareTo(BigInteger.ZERO) < 0) { in bigIntegerToInt()152 return bigInt.intValue(); in bigIntegerToInt()155 private static long bigIntegerToLong(BigInteger bigInt) throws CertificateParsingException { in bigIntegerToLong() argument156 if (bigInt.compareTo(BigInteger.valueOf(Long.MAX_VALUE)) > 0 in bigIntegerToLong()157 || bigInt.compareTo(BigInteger.ZERO) < 0) { in bigIntegerToLong()160 return bigInt.longValue(); in bigIntegerToLong()
META-INF/MANIFEST.MF META-INF/ META-INF/maven/ META- ...
21927 transient java.math.BigInt bigInt