Inheritance diagram for IntNum:Public Member Functions | |
| int | getInt () |
| long | getInt64 () |
| int | getUint () |
| long | getUint64 () |
| BigInteger | getBigInteger () |
| String | toString () |
Integer Numerals
Definition at line 25 of file IntNum.java.
|
inline |
|
inline |
Retrieve the int value.
Definition at line 36 of file IntNum.java.
|
inline |
Retrieve the 64-bit int value.
Definition at line 47 of file IntNum.java.
|
inline |
Retrieve the unsigned 32-bit value. The returned Java int holds the raw bit pattern; use Integer.toUnsignedLong(v) for unsigned interpretation.
Definition at line 60 of file IntNum.java.
|
inline |
Retrieve the unsigned 64-bit value. The returned Java long holds the raw bit pattern; use Long.toUnsignedString(v) or getBigInteger() for values exceeding Long.MAX_VALUE.
Definition at line 74 of file IntNum.java.
|
inline |
Returns a string representation of the numeral.
Definition at line 93 of file IntNum.java.
Referenced by RatNum.getBigIntDenominator(), IntNum.getBigInteger(), and RatNum.getBigIntNumerator().