Package org.red5.io.object
Class UnsignedLong
java.lang.Object
java.lang.Number
org.red5.io.object.UnsignedNumber
org.red5.io.object.UnsignedLong
- All Implemented Interfaces:
Serializable
The UnsignedLong class wraps a value of an unsigned 64 bits number.
- Author:
- Matteo Merli (matteo.merli@gmail.com)
- See Also:
-
Field Summary
Fields inherited from class org.red5.io.object.UnsignedNumber
hexLetters
-
Constructor Summary
ModifierConstructorDescriptionprivate
UnsignedLong
(byte c) UnsignedLong
(int c) UnsignedLong
(long c) UnsignedLong
(short c) UnsignedLong
(Random random) Construct a new random UnsignedLong. -
Method Summary
Modifier and TypeMethodDescriptionint
compareTo
(UnsignedNumber other) double
boolean
float
static UnsignedLong
fromBytes
(byte[] c) static UnsignedLong
fromBytes
(byte[] c, int offset) static UnsignedLong
fromString
(String c) static UnsignedLong
fromString
(String c, int radix) byte[]
getBytes()
Get a byte array representation of the number.int
hashCode()
int
intValue()
long
void
shiftLeft
(int nBits) Perform a bit left shift of the value.void
shiftRight
(int nBits) Perform a bit right shift of the value.toString()
Methods inherited from class org.red5.io.object.UnsignedNumber
toHexString, toHexString
Methods inherited from class java.lang.Number
byteValue, shortValue
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
value
private byte[] value
-
-
Constructor Details
-
UnsignedLong
public UnsignedLong(byte c) -
UnsignedLong
public UnsignedLong(short c) -
UnsignedLong
public UnsignedLong(int c) -
UnsignedLong
public UnsignedLong(long c) -
UnsignedLong
Construct a new random UnsignedLong.- Parameters:
random
- a Random handler
-
UnsignedLong
private UnsignedLong()
-
-
Method Details
-
fromBytes
-
fromBytes
-
fromString
-
fromString
-
getBytes
public byte[] getBytes()Description copied from class:UnsignedNumber
Get a byte array representation of the number. The order will be MSB first (Big Endian).- Specified by:
getBytes
in classUnsignedNumber
- Returns:
- the serialized number
-
toString
- Specified by:
toString
in classUnsignedNumber
-
intValue
public int intValue() -
longValue
public long longValue() -
floatValue
public float floatValue()- Specified by:
floatValue
in classNumber
-
doubleValue
public double doubleValue()- Specified by:
doubleValue
in classNumber
-
compareTo
- Specified by:
compareTo
in classUnsignedNumber
-
equals
- Specified by:
equals
in classUnsignedNumber
-
hashCode
public int hashCode()- Specified by:
hashCode
in classUnsignedNumber
-
shiftRight
public void shiftRight(int nBits) Description copied from class:UnsignedNumber
Perform a bit right shift of the value.- Specified by:
shiftRight
in classUnsignedNumber
- Parameters:
nBits
- the number of positions to shift
-
shiftLeft
public void shiftLeft(int nBits) Description copied from class:UnsignedNumber
Perform a bit left shift of the value.- Specified by:
shiftLeft
in classUnsignedNumber
- Parameters:
nBits
- the number of positions to shift
-