Package com.google.common.primitives
@ParametersAreNonnullByDefault
@CheckReturnValue
package com.google.common.primitives
Static utilities for working with the eight primitive types and
void
, and value types for
treating them as unsigned.
This package is a part of the open-source Guava library.
See the Guava User Guide article on primitive utilities.
Contents
General static utilities
Per-type static utilities
Value types
-
ClassesClassDescriptionContains static utility methods pertaining to primitive types and their corresponding wrapper types.Static utility methods pertaining to
byte
primitives that interpret values as signed.Static utility methods pertaining tobyte
primitives that interpret values as unsigned (that is, any negative valueb
is treated as the positive value256 + b
).A wrapper class for unsignedint
values, supporting arithmetic operations.Static utility methods pertaining toint
primitives that interpret values as unsigned (that is, any negative valuex
is treated as the positive value2^32 + x
).A wrapper class for unsignedlong
values, supporting arithmetic operations.Static utility methods pertaining tolong
primitives that interpret values as unsigned (that is, any negative valuex
is treated as the positive value2^64 + x
).