javax.cim
public class UnsignedInteger64 extends Number implements Comparable<UnsignedInteger64>
UnsignedInteger64
class wraps the value of an uint64. This
class was created to represent an uint64 data type as defined by the CIM
Infrastructure Specification. The specification is available from the DMTF
(Distributed Management Task Force) at http://dmtf.org/
Field Summary | |
---|---|
static BigInteger | MAX_VALUE
MAX_VALUE |
static BigInteger | MIN_VALUE
MIN_VALUE |
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 UnsignedInt64 with the specified
UnsignedInt64 . |
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.
UnsignedInt64
with the specified
UnsignedInt64
. This method is provided in preference to
individual methods for each of the six boolean comparison operators (<,
==, >, >=, !=, <=). The suggested idiom for performing these comparisons
is: (x.compareTo(y) <op> 0)
, where <op> is one
of the six comparison operators.
Parameters: pOther
- Object to which this UnsignedInt64
is to be
compared. Throws a ClassCastException
if the
input object is not an UnsignedInt64
.
Returns: -1, 0 or 1 as this UnsignedInt64
is numerically less
than, equal to, or greater than val.
See Also: java.lang.Comparable#compareTo(Object o)