javax.cim
public class UnsignedInteger32 extends Number implements Comparable<UnsignedInteger32>
UnsignedInteger32. A
uint32 data type is defined by the (DMTF) CIM Infrastructure Specification (DSP004).
| Field Summary | |
|---|---|
| static long | MAX_VALUE
The maximum value for an UnsignedInteger32. |
| static long | MIN_VALUE
The minimum value for an UnsignedInteger32. |
| Constructor Summary | |
|---|---|
| UnsignedInteger32(long pValue)
Constructs an unsigned 32-bit integer object for the specified long
value. | |
| UnsignedInteger32(String pValue)
Constructs an unsigned 32-bit integer object for the specified string.
| |
| Method Summary | |
|---|---|
| int | compareTo(UnsignedInteger32 pOther)
Compares this object with the specified object for order. |
UnsignedInteger32.UnsignedInteger32.Parameters: pValue The long to be represented as an unsigned 32-bit integer.
Throws: NumberFormatException If the number is out of range.
Parameters: pValue The string to be represented as an unsigned 32-bit integer.
Throws: NumberFormatException If the number is out of range.
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.