void, and value types for treating them as unsigned.
See: Description
byte primitives that interpret values as signed.
byte primitives that interpret values as
unsigned (that is, any negative value
b is treated as the positive value
256 + b).
int values, supporting arithmetic operations.
int primitives that interpret values as
unsigned (that is, any negative value
x is treated as the positive value
2^32 + x).
long values, supporting arithmetic operations.
long primitives that interpret values as
unsigned (that is, any negative value
x is treated as the positive value
2^64 + x).
void, and value types for treating them as unsigned.
This package is a part of the open-source Guava libraries.
See the Guava User Guide article on primitive utilities.