Class ExactMath
- java.lang.Object
-
- org.apache.commons.compress.utils.ExactMath
-
public class ExactMath extends java.lang.ObjectPRIVATE. Performs exact math throughMath"exact" APIs.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static intadd(int x, long y)Returns the int result of adding an int and a long, and throws an exception if the result overflows an int.
-
-
-
Method Detail
-
add
public static int add(int x, long y)Returns the int result of adding an int and a long, and throws an exception if the result overflows an int.- Parameters:
x- the first value, an int.y- the second value, a long,- Returns:
- the addition of both values.
- Throws:
java.lang.IllegalArgumentException- when y or the result overflows an int
-
-