util
Class BigNumber

java.lang.Object
  extended by 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 .
 
Constructor Summary
BigNumber()
           
 
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
 

Field Detail

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
Constructor Detail

BigNumber

public BigNumber()
Method Detail

main

public static void main(String[] arg)
Prints the decimal equivalent of HEX.