org.sblim.wbem.cim
Class UnsignedInt64
Number
org.sblim.wbem.cim.UnsignedInt64
- Cloneable, java.io.Serializable
public class UnsignedInt64
extends Number
implements java.io.Serializable, Cloneable
Implements a 64-bit unsigned integer object.
The value range of an unsigned integer of 64-bit is '0 ..
18446744073709551615'.
static BigInteger | MAX_VALUE - The maximum value a unsigned integer of 64-bit value can be.
|
static BigInteger | MIN_VALUE - The minimum value a unsigned integer of 64-bit value can be.
|
UnsignedInt64(BigInteger pValue) - Constructs an unsigned 64-bit integer object for the specified BigInteger
value.
|
UnsignedInt64(String pValue) - Constructs an unsigned 64-bit integer object for the specified String
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(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.
|
UnsignedInt64(short pValue) - Constructs an unsigned 64-bit integer object for the specified short
value.
|
MAX_VALUE
public static BigInteger MAX_VALUE
The maximum value a unsigned integer of 64-bit value can be. Its value is
'18446744073709551615'.
MIN_VALUE
public static BigInteger MIN_VALUE
The minimum value a unsigned integer of 64-bit value can be. Its value is
'0'.
UnsignedInt64
public UnsignedInt64(BigInteger pValue)
Constructs an unsigned 64-bit integer object for the specified BigInteger
value.
pValue
- The value of the created object
UnsignedInt64
public UnsignedInt64(String pValue)
Constructs an unsigned 64-bit integer object for the specified String
value.
pValue
- The value of the created object
UnsignedInt64
public UnsignedInt64(byte pValue)
Constructs an unsigned 64-bit integer object for the specified byte
value.
pValue
- The value of the created object
UnsignedInt64
public UnsignedInt64(int pValue)
Constructs an unsigned 64-bit integer object for the specified int value.
pValue
- The value of the created object
UnsignedInt64
public UnsignedInt64(long pValue)
Constructs an unsigned 64-bit integer object for the specified long
value.
pValue
- The value of the created object
UnsignedInt64
public UnsignedInt64(UnsignedInt16 pValue)
Constructs an unsigned 64-bit integer object for the specified
UnsignedInt16 value.
pValue
- The value of the created object
UnsignedInt64
public UnsignedInt64(UnsignedInt32 pValue)
Constructs an unsigned 64-bit integer object for the specified
UnsignedInt32 value.
pValue
- The value of the created object
UnsignedInt64
public UnsignedInt64(UnsignedInt64 pValue)
Constructs an unsigned 64-bit integer object for the specified
UnsignedInt64 value.
pValue
- The value of the created object
UnsignedInt64
public UnsignedInt64(UnsignedInt8 pValue)
Constructs an unsigned 64-bit integer object for the specified
UnsignedInt8 value.
pValue
- The value of the created object
UnsignedInt64
public UnsignedInt64(short pValue)
Constructs an unsigned 64-bit integer object for the specified short
value.
pValue
- The value of the created object
bigIntValue
public BigInteger bigIntValue()
Returns the value if this unsigned integer as a BigInteger.
- This UnsignedInt64 in a BigInteger representation.
byteValue
public byte byteValue()
clone
public Object clone()
doubleValue
public double doubleValue()
equals
public boolean equals(Object o)
floatValue
public float floatValue()
hashCode
public int hashCode()
intValue
public int intValue()
longValue
public long longValue()
shortValue
public short shortValue()
toString
public String toString()
Copyright © 2005, 2009 IBM Corporation. All Rights Reserved.