| Class | Description |
|---|---|
| Chars | |
| Ints | |
| Longs | |
| Primitives |
Contains static utility methods pertaining to primitive types and their
corresponding wrapper types.
|
| Shorts | |
| UnsignedBytes |
Static utility methods pertaining to
byte primitives that interpret
values as unsigned (that is, any negative value b is treated
as the positive value 256 + b). |
| UnsignedInts |
Static utility methods pertaining to
int primitives that interpret values as
unsigned (that is, any negative value x is treated as the positive value
2^32 + x). |
| UnsignedLongs |
Static utility methods pertaining to
long primitives that interpret values as
unsigned (that is, any negative value x is treated as the positive value
2^64 + x). |
Copyright © 2020. All rights reserved.