util
Class BigNumber
java.lang.Object
util.BigNumber
public class BigNumber
- extends Object
A class to convert arbitrary long integers.
|
Field Summary |
private static String |
BIN
The bin-representation of the integer to convert . |
private static String |
HEX
The hex-representation of the integer to convert . |
|
Method Summary |
static void |
main(String[] arg)
Prints the decimal equivalent of HEX. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
HEX
private static final String HEX
- The hex-representation of the integer to convert .
- See Also:
- Constant Field Values
BIN
private static final String BIN
- The bin-representation of the integer to convert .
- See Also:
- Constant Field Values
BigNumber
public BigNumber()
main
public static void main(String[] arg)
- Prints the decimal equivalent of
HEX.