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

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

Introduction

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

The text is from its open source code.

Field

Method

intcompare(long a, long b)
Compares the two specified long values, treating them as unsigned values between 0 and 2^64 - 1 inclusive.
longdecode(String stringValue)
Returns the unsigned long value represented by the given string.
longdivide(long dividend, long divisor)
Returns dividend / divisor, where the dividend and divisor are treated as unsigned 64-bit quantities.
longparseUnsignedLong(String s)
Returns the unsigned long value represented by the given decimal string.
longparseUnsignedLong(String s, int radix)
Returns the unsigned long value represented by a string with the given radix.
longremainder(long dividend, long divisor)
Returns dividend % divisor, where the dividend and divisor are treated as unsigned 64-bit quantities.
StringtoString(long x)
Returns a string representation of x, where x is treated as unsigned.
StringtoString(long x, int radix)
Returns a string representation of x for the given radix, where x is treated as unsigned.