javax.cim
public class UnsignedInteger64 extends Number implements Comparable<UnsignedInteger64>
UnsignedInteger64. A
uint64 data type is defined by the (DMTF) CIM Infrastructure Specification (DSP004).
| Field Summary | |
|---|---|
| static BigInteger | MAX_VALUE
The maximum value for an UnsignedInteger64. |
| static BigInteger | MIN_VALUE
The minimum value for an UnsignedInteger64. |
| Constructor Summary | |
|---|---|
| UnsignedInteger64(BigInteger pValue)
Constructs an unsigned 64-bit integer object for the specified
BigInteger. | |
| UnsignedInteger64(byte[] pValue)
Constructs an unsigned 64-bit integer object for the specified array of
bytes. | |
| UnsignedInteger64(String pValue)
Constructs an unsigned 64-bit integer object from the specified string.
| |
| Method Summary | |
|---|---|
| BigInteger | bigIntegerValue()
Get the value as a BigInteger.
|
| int | compareTo(UnsignedInteger64 pOther)
Compares this object with the specified object for order. |
UnsignedInteger64.UnsignedInteger64.BigInteger. Only the lower 64 bits are considered.
Parameters: pValue
The BigInteger to be represented as an unsigned
64-bit integer.
Throws: NumberFormatException If the number is out of range.
Parameters: pValue The byte array to be represented as an unsigned 64-bit integer.
Throws: NumberFormatException If the number is out of range.
Parameters: pValue The string to be represented as an unsigned 64-bit integer.
Throws: NumberFormatException If the number is out of range.
BigInteger.
Returns: BigInteger representation of this object.
Parameters: pOther The Object to be compared.
Returns: A negative integer, zero, or a positive integer as this object is less than, equal to, or greater than the specified object.