BigInteger.compareTo
Class Overview | Class Members |
This Package |
All Packages
public int compareTo( BigInteger val )
Description
Returns -1, 0 or 1 as this number is less than, equal to, or
greater than val. This method is provided in preference to
individual methods for each of the six boolean comparison operators
(<, ==, >, >=, !=, <=). The suggested idiom for performing these
comparisons is: (x.compareTo(y) 0), where is one of the
six comparison operators.