org.sblim.wbem.cim
public class UnsignedInt64 extends java.lang.Number implements java.io.Serializable, java.lang.Cloneable
Modifier and Type | Field and Description |
---|---|
static java.math.BigInteger |
MAX_VALUE
The maximum value a unsigned integer of 64-bit value can be.
|
static java.math.BigInteger |
MIN_VALUE
The minimum value a unsigned integer of 64-bit value can be.
|
Constructor and Description |
---|
UnsignedInt64(java.math.BigInteger pValue)
Constructs an unsigned 64-bit integer object for the specified BigInteger
value.
|
UnsignedInt64(byte pValue)
Constructs an unsigned 64-bit integer object for the specified byte
value.
|
UnsignedInt64(int pValue)
Constructs an unsigned 64-bit integer object for the specified int value.
|
UnsignedInt64(long pValue)
Constructs an unsigned 64-bit integer object for the specified long
value.
|
UnsignedInt64(short pValue)
Constructs an unsigned 64-bit integer object for the specified short
value.
|
UnsignedInt64(java.lang.String pValue)
Constructs an unsigned 64-bit integer object for the specified String
value.
|
UnsignedInt64(UnsignedInt16 pValue)
Constructs an unsigned 64-bit integer object for the specified
UnsignedInt16 value.
|
UnsignedInt64(UnsignedInt32 pValue)
Constructs an unsigned 64-bit integer object for the specified
UnsignedInt32 value.
|
UnsignedInt64(UnsignedInt64 pValue)
Constructs an unsigned 64-bit integer object for the specified
UnsignedInt64 value.
|
UnsignedInt64(UnsignedInt8 pValue)
Constructs an unsigned 64-bit integer object for the specified
UnsignedInt8 value.
|
Modifier and Type | Method and Description |
---|---|
java.math.BigInteger |
bigIntValue()
Returns the value if this unsigned integer as a BigInteger.
|
byte |
byteValue() |
java.lang.Object |
clone() |
double |
doubleValue() |
boolean |
equals(java.lang.Object o) |
float |
floatValue() |
int |
hashCode() |
int |
intValue() |
long |
longValue() |
short |
shortValue() |
java.lang.String |
toString() |
public static java.math.BigInteger MIN_VALUE
public static java.math.BigInteger MAX_VALUE
public UnsignedInt64(byte pValue)
pValue
- The value of the created objectjava.lang.IllegalArgumentException
- If value does not fit into the MIN_VALUE .. MAX_VALUE range.public UnsignedInt64(short pValue)
pValue
- The value of the created objectjava.lang.IllegalArgumentException
- If value does not fit into the MIN_VALUE .. MAX_VALUE range.public UnsignedInt64(int pValue)
pValue
- The value of the created objectjava.lang.IllegalArgumentException
- If value does not fit into the MIN_VALUE .. MAX_VALUE range.public UnsignedInt64(long pValue)
pValue
- The value of the created objectjava.lang.IllegalArgumentException
- If value does not fit into the MIN_VALUE .. MAX_VALUE range.public UnsignedInt64(java.math.BigInteger pValue)
pValue
- The value of the created objectjava.lang.IllegalArgumentException
- If value does not fit into the MIN_VALUE .. MAX_VALUE range.public UnsignedInt64(java.lang.String pValue)
pValue
- The value of the created objectjava.lang.NumberFormatException
- If value contains non numeric values.java.lang.IllegalArgumentException
- If value is not a null/empty string or if value does not fit
into the MIN_VALUE .. MAX_VALUE range.public UnsignedInt64(UnsignedInt8 pValue)
pValue
- The value of the created objectjava.lang.IllegalArgumentException
- If value does not fit into the MIN_VALUE .. MAX_VALUE range.public UnsignedInt64(UnsignedInt16 pValue)
pValue
- The value of the created objectjava.lang.IllegalArgumentException
- If value does not fit into the MIN_VALUE .. MAX_VALUE range.public UnsignedInt64(UnsignedInt32 pValue)
pValue
- The value of the created objectjava.lang.IllegalArgumentException
- If value does not fit into the MIN_VALUE .. MAX_VALUE range.public UnsignedInt64(UnsignedInt64 pValue)
pValue
- The value of the created objectjava.lang.IllegalArgumentException
- If value does not fit into the MIN_VALUE .. MAX_VALUE range.public java.lang.String toString()
toString
in class java.lang.Object
public boolean equals(java.lang.Object o)
equals
in class java.lang.Object
public byte byteValue()
byteValue
in class java.lang.Number
public short shortValue()
shortValue
in class java.lang.Number
public int intValue()
intValue
in class java.lang.Number
public long longValue()
longValue
in class java.lang.Number
public float floatValue()
floatValue
in class java.lang.Number
public double doubleValue()
doubleValue
in class java.lang.Number
public java.math.BigInteger bigIntValue()
public int hashCode()
hashCode
in class java.lang.Object
public java.lang.Object clone()
clone
in class java.lang.Object
Copyright © 2005, 2009 IBM Corporation. All Rights Reserved.