keycloak-federation
|
公開メンバ関数 | |
UInt64 (long value) | |
UInt64 (long top, long bottom) | |
UInt64 (BigInteger value) | |
UInt64 (String value) | |
BigInteger | value () |
byte | byteValue () |
double | doubleValue () |
float | floatValue () |
int | intValue () |
long | longValue () |
short | shortValue () |
boolean | equals (Object o) |
int | hashCode () |
int | compareTo (UInt64 other) |
String | toString () |
long | top () |
long | bottom () |
静的公開変数類 | |
static final long | MAX_LONG_VALUE = Long.MAX_VALUE |
static final BigInteger | MAX_BIG_VALUE = new BigInteger("18446744073709551615") |
static final long | MIN_VALUE = 0 |
非公開変数類 | |
BigInteger | value |
long | top |
long | bottom |
Class to represent unsigned 64-bit numbers. Warning: Any functions which take or return a long
are restricted to the range of a signed 64bit number. Use the BigInteger methods if you wish access to the full range.
|
inline |
Create a UInt64 from a long.
value | Must be a valid integer within MIN_VALUE–MAX_VALUE |
NumberFormatException | if value is not between MIN_VALUE and MAX_VALUE |
|
inline |
Create a UInt64 from two longs.
top | Most significant 4 bytes. |
bottom | Least significant 4 bytes. |
|
inline |
Create a UInt64 from a BigInteger
value | Must be a valid BigInteger between MIN_VALUE–MAX_BIG_VALUE |
NumberFormatException | if value is not an integer between MIN_VALUE and MAX_BIG_VALUE |
|
inline |
Create a UInt64 from a String.
value | Must parse to a valid integer within MIN_VALUE–MAX_BIG_VALUE |
NumberFormatException | if value is not an integer between MIN_VALUE and MAX_BIG_VALUE |
|
inline |
Least significant 4 bytes.
|
inline |
The value of this as a byte.
|
inline |
Compare two UInt32s.
|
inline |
The value of this as a double.
|
inline |
Test two UInt64s for equality.
|
inline |
The value of this as a float.
|
inline |
|
inline |
The value of this as a int.
|
inline |
The value of this as a long.
|
inline |
The value of this as a short.
|
inline |
Most significant 4 bytes.
|
inline |
The value of this as a string.
|
inline |
The value of this as a BigInteger.
|
private |
|
static |
Maximum allowed value (when accessed as a BigInteger)
|
static |
Maximum allowed value (when accessed as a long)
|
static |
Minimum allowed value
|
private |
|
private |