Java Utililty Methods Byte to Unsigned Int

List of utility methods to do Byte to Unsigned Int

Description

The list of methods to do Byte to Unsigned Int are organized into topic(s).

Method

longbyteToUnsignedLong(byte data)

Converts the given byte's value to an unsigned long number.

return 0x00000000000000ff & ((long) data);