Class UnsignedLongs
long primitives that interpret values as
 unsigned (that is, any negative value x is treated as the positive value 
 2^64 + x). The methods for which signedness is not an issue are in Longs, as well as
 signed versions of methods for which signedness is an issue.
 In addition, this class provides several static methods for converting a long to a
 String and a String to a long that treat the long as an unsigned
 number.
 
Users of these utilities must be extremely careful not to mix up signed and unsigned
 long values. When possible, it is recommended that the UnsignedLong wrapper class
 be used, at a small efficiency penalty, to enforce the distinction in the type system.
 
See the Guava User Guide article on unsigned primitive utilities.
- Since:
- 10.0
- Author:
- Louis Wasserman, Brian Milch, Colin Evans
- 
Field SummaryFields
- 
Method SummaryModifier and TypeMethodDescriptionstatic intcompare(long a, long b) Compares the two specifiedlongvalues, treating them as unsigned values between0and2^64 - 1inclusive.static longReturns the unsignedlongvalue represented by the given string.static longdivide(long dividend, long divisor) Returns dividend / divisor, where the dividend and divisor are treated as unsigned 64-bit quantities.static StringReturns a string containing the supplied unsignedlongvalues separated byseparator.static Comparator<long[]> Returns a comparator that compares two arrays of unsignedlongvalues lexicographically.static longmax(long... array) Returns the greatest value present inarray, treating values as unsigned.static longmin(long... array) Returns the least value present inarray, treating values as unsigned.static longparseUnsignedLong(String string) Returns the unsignedlongvalue represented by the given decimal string.static longparseUnsignedLong(String string, int radix) Returns the unsignedlongvalue represented by a string with the given radix.static longremainder(long dividend, long divisor) Returns dividend % divisor, where the dividend and divisor are treated as unsigned 64-bit quantities.static voidsort(long[] array) Sorts the array, treating its elements as unsigned 64-bit integers.static voidsort(long[] array, int fromIndex, int toIndex) Sorts the array betweenfromIndexinclusive andtoIndexexclusive, treating its elements as unsigned 64-bit integers.static voidsortDescending(long[] array) Sorts the elements ofarrayin descending order, interpreting them as unsigned 64-bit integers.static voidsortDescending(long[] array, int fromIndex, int toIndex) Sorts the elements ofarraybetweenfromIndexinclusive andtoIndexexclusive in descending order, interpreting them as unsigned 64-bit integers.static StringtoString(long x) Returns a string representation of x, where x is treated as unsigned.static StringtoString(long x, int radix) Returns a string representation ofxfor the given radix, wherexis treated as unsigned.
- 
Field Details- 
MAX_VALUEpublic static final long MAX_VALUE- See Also:
 
 
- 
- 
Method Details- 
comparepublic static int compare(long a, long b) Compares the two specifiedlongvalues, treating them as unsigned values between0and2^64 - 1inclusive.Note: this method is now unnecessary and should be treated as deprecated; use the equivalent Long.compareUnsigned(long, long)method instead.- Parameters:
- a- the first unsigned- longto compare
- b- the second unsigned- longto compare
- Returns:
- a negative value if ais less thanb; a positive value ifais greater thanb; or zero if they are equal
 
- 
minpublic static long min(long... array) Returns the least value present inarray, treating values as unsigned.- Parameters:
- array- a nonempty array of unsigned- longvalues
- Returns:
- the value present in arraythat is less than or equal to every other value in the array according tocompare(long, long)
- Throws:
- IllegalArgumentException- if- arrayis empty
 
- 
maxpublic static long max(long... array) Returns the greatest value present inarray, treating values as unsigned.- Parameters:
- array- a nonempty array of unsigned- longvalues
- Returns:
- the value present in arraythat is greater than or equal to every other value in the array according tocompare(long, long)
- Throws:
- IllegalArgumentException- if- arrayis empty
 
- 
joinReturns a string containing the supplied unsignedlongvalues separated byseparator. For example,join("-", 1, 2, 3)returns the string"1-2-3".- Parameters:
- separator- the text that should appear between consecutive values in the resulting string (but not at the start or end)
- array- an array of unsigned- longvalues, possibly empty
 
- 
lexicographicalComparatorReturns a comparator that compares two arrays of unsignedlongvalues lexicographically. That is, it compares, usingcompare(long, long)), the first pair of values that follow any common prefix, or when one array is a prefix of the other, treats the shorter array as the lesser. For example,[] < [1L] < [1L, 2L] < [2L] < [1L << 63].The returned comparator is inconsistent with Object.equals(Object)(since arrays support only identity equality), but it is consistent withArrays.equals(long[], long[]).Java 9+ users: Use Arrays::compareUnsigned.
- 
sortpublic static void sort(long[] array) Sorts the array, treating its elements as unsigned 64-bit integers.- Since:
- 23.1
 
- 
sortpublic static void sort(long[] array, int fromIndex, int toIndex) Sorts the array betweenfromIndexinclusive andtoIndexexclusive, treating its elements as unsigned 64-bit integers.- Since:
- 23.1
 
- 
sortDescendingpublic static void sortDescending(long[] array) Sorts the elements ofarrayin descending order, interpreting them as unsigned 64-bit integers.- Since:
- 23.1
 
- 
sortDescendingpublic static void sortDescending(long[] array, int fromIndex, int toIndex) Sorts the elements ofarraybetweenfromIndexinclusive andtoIndexexclusive in descending order, interpreting them as unsigned 64-bit integers.- Since:
- 23.1
 
- 
dividepublic static long divide(long dividend, long divisor) Returns dividend / divisor, where the dividend and divisor are treated as unsigned 64-bit quantities.Java 8+ users: use Long.divideUnsigned(long, long)instead.- Parameters:
- dividend- the dividend (numerator)
- divisor- the divisor (denominator)
- Throws:
- ArithmeticException- if divisor is 0
 
- 
remainderpublic static long remainder(long dividend, long divisor) Returns dividend % divisor, where the dividend and divisor are treated as unsigned 64-bit quantities.Java 8+ users: use Long.remainderUnsigned(long, long)instead.- Parameters:
- dividend- the dividend (numerator)
- divisor- the divisor (denominator)
- Throws:
- ArithmeticException- if divisor is 0
- Since:
- 11.0
 
- 
parseUnsignedLongReturns the unsignedlongvalue represented by the given decimal string.Java 8+ users: use Long.parseUnsignedLong(String)instead.- Throws:
- NumberFormatException- if the string does not contain a valid unsigned- longvalue
- NullPointerException- if- stringis null (in contrast to- Long.parseLong(String))
 
- 
parseUnsignedLongReturns the unsignedlongvalue represented by a string with the given radix.Java 8+ users: use Long.parseUnsignedLong(String, int)instead.- Parameters:
- string- the string containing the unsigned- longrepresentation to be parsed.
- radix- the radix to use while parsing- string
- Throws:
- NumberFormatException- if the string does not contain a valid unsigned- longwith the given radix, or if- radixis not between- Character.MIN_RADIXand- Character.MAX_RADIX.
- NullPointerException- if- stringis null (in contrast to- Long.parseLong(String))
 
- 
decodeReturns the unsignedlongvalue represented by the given string.Accepts a decimal, hexadecimal, or octal number given by specifying the following prefix: - 0xHexDigits
- 0XHexDigits
- #HexDigits
- 0OctalDigits
 - Throws:
- NumberFormatException- if the string does not contain a valid unsigned- longvalue
- Since:
- 13.0
 
- 
toStringReturns a string representation of x, where x is treated as unsigned.Java 8+ users: use Long.toUnsignedString(long)instead.
- 
toStringReturns a string representation ofxfor the given radix, wherexis treated as unsigned.Java 8+ users: use Long.toUnsignedString(long, int)instead.- Parameters:
- x- the value to convert to a string.
- radix- the radix to use while working with- x
- Throws:
- IllegalArgumentException- if- radixis not between- Character.MIN_RADIXand- Character.MAX_RADIX.
 
 
-