Java com.google.common.primitives UnsignedInts fields, constructors, methods, implement or subclass

Example usage for Java com.google.common.primitives UnsignedInts fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.common.primitives UnsignedInts.

The text is from its open source code.

Method

intcompare(int a, int b)
Compares the two specified int values, treating them as unsigned values between 0 and 2^32 - 1 inclusive.
intparseUnsignedInt(String s)
Returns the unsigned int value represented by the given decimal string.
intparseUnsignedInt(String string, int radix)
Returns the unsigned int value represented by a string with the given radix.
intremainder(int dividend, int divisor)
Returns dividend % divisor, where the dividend and divisor are treated as unsigned 32-bit quantities.
longtoLong(int value)
Returns the value of the given int as a long , when treated as unsigned.
StringtoString(int x)
Returns a string representation of x, where x is treated as unsigned.