Class UnsignedInteger
- java.lang.Object
-
- java.lang.Number
-
- com.google.common.primitives.UnsignedInteger
-
- All Implemented Interfaces:
Serializable,Comparable<UnsignedInteger>
@GwtCompatible(emulated=true) public final class UnsignedInteger extends Number implements Comparable<UnsignedInteger>
A wrapper class for unsignedintvalues, supporting arithmetic operations.In some cases, when speed is more important than code readability, it may be faster simply to treat primitive
intvalues as unsigned, using the methods fromUnsignedInts.See the Guava User Guide article on unsigned primitive utilities.
- Since:
- 11.0
- Author:
- Louis Wasserman
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static UnsignedIntegerMAX_VALUEstatic UnsignedIntegerONEstatic UnsignedIntegerZERO
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description BigIntegerbigIntegerValue()Returns the value of thisUnsignedIntegeras aBigInteger.intcompareTo(UnsignedInteger other)Compares this unsigned integer to another unsigned integer.UnsignedIntegerdividedBy(UnsignedInteger val)Returns the result of dividing this byval.doubledoubleValue()Returns the value of thisUnsignedIntegeras afloat, analogous to a widening primitive conversion frominttodouble, and correctly rounded.booleanequals(@Nullable Object obj)Indicates whether some other object is "equal to" this one.floatfloatValue()Returns the value of thisUnsignedIntegeras afloat, analogous to a widening primitive conversion frominttofloat, and correctly rounded.static UnsignedIntegerfromIntBits(int bits)Returns anUnsignedIntegercorresponding to a given bit representation.inthashCode()Returns a hash code value for the object.intintValue()Returns the value of thisUnsignedIntegeras anint.longlongValue()Returns the value of thisUnsignedIntegeras along.UnsignedIntegerminus(UnsignedInteger val)Returns the result of subtracting this andval.UnsignedIntegermod(UnsignedInteger val)Returns this modval.UnsignedIntegerplus(UnsignedInteger val)Returns the result of adding this andval.UnsignedIntegertimes(UnsignedInteger val)Returns the result of multiplying this andval.StringtoString()Returns a string representation of theUnsignedIntegervalue, in base 10.StringtoString(int radix)Returns a string representation of theUnsignedIntegervalue, in baseradix.static UnsignedIntegervalueOf(long value)Returns anUnsignedIntegerthat is equal tovalue, if possible.static UnsignedIntegervalueOf(String string)Returns anUnsignedIntegerholding the value of the specifiedString, parsed as an unsignedintvalue.static UnsignedIntegervalueOf(String string, int radix)Returns anUnsignedIntegerholding the value of the specifiedString, parsed as an unsignedintvalue in the specified radix.static UnsignedIntegervalueOf(BigInteger value)Returns aUnsignedIntegerrepresenting the same value as the specifiedBigInteger.-
Methods inherited from class java.lang.Number
byteValue, shortValue
-
-
-
-
Field Detail
-
ZERO
public static final UnsignedInteger ZERO
-
ONE
public static final UnsignedInteger ONE
-
MAX_VALUE
public static final UnsignedInteger MAX_VALUE
-
-
Method Detail
-
fromIntBits
public static UnsignedInteger fromIntBits(int bits)
Returns anUnsignedIntegercorresponding to a given bit representation. The argument is interpreted as an unsigned 32-bit value. Specifically, the sign bit ofbitsis interpreted as a normal bit, and all other bits are treated as usual.If the argument is nonnegative, the returned result will be equal to
bits, otherwise, the result will be equal to2^32 + bits.To represent unsigned decimal constants, consider
valueOf(long)instead.- Since:
- 14.0
-
valueOf
public static UnsignedInteger valueOf(long value)
Returns anUnsignedIntegerthat is equal tovalue, if possible. The inverse operation oflongValue().
-
valueOf
public static UnsignedInteger valueOf(BigInteger value)
Returns aUnsignedIntegerrepresenting the same value as the specifiedBigInteger. This is the inverse operation ofbigIntegerValue().- Throws:
IllegalArgumentException- ifvalueis negative orvalue >= 2^32
-
valueOf
public static UnsignedInteger valueOf(String string)
Returns anUnsignedIntegerholding the value of the specifiedString, parsed as an unsignedintvalue.- Throws:
NumberFormatException- if the string does not contain a parsable unsignedintvalue
-
valueOf
public static UnsignedInteger valueOf(String string, int radix)
Returns anUnsignedIntegerholding the value of the specifiedString, parsed as an unsignedintvalue in the specified radix.- Throws:
NumberFormatException- if the string does not contain a parsable unsignedintvalue
-
plus
public UnsignedInteger plus(UnsignedInteger val)
Returns the result of adding this andval. If the result would have more than 32 bits, returns the low 32 bits of the result.- Since:
- 14.0
-
minus
public UnsignedInteger minus(UnsignedInteger val)
Returns the result of subtracting this andval. If the result would be negative, returns the low 32 bits of the result.- Since:
- 14.0
-
times
@GwtIncompatible public UnsignedInteger times(UnsignedInteger val)
Returns the result of multiplying this andval. If the result would have more than 32 bits, returns the low 32 bits of the result.- Since:
- 14.0
-
dividedBy
public UnsignedInteger dividedBy(UnsignedInteger val)
Returns the result of dividing this byval.- Throws:
ArithmeticException- ifvalis zero- Since:
- 14.0
-
mod
public UnsignedInteger mod(UnsignedInteger val)
Returns this modval.- Throws:
ArithmeticException- ifvalis zero- Since:
- 14.0
-
intValue
public int intValue()
Returns the value of thisUnsignedIntegeras anint. This is an inverse operation tofromIntBits(int).Note that if this
UnsignedIntegerholds a value>= 2^31, the returned value will be equal tothis - 2^32.
-
longValue
public long longValue()
Returns the value of thisUnsignedIntegeras along.
-
floatValue
public float floatValue()
Returns the value of thisUnsignedIntegeras afloat, analogous to a widening primitive conversion frominttofloat, and correctly rounded.- Specified by:
floatValuein classNumber- Returns:
- the numeric value represented by this object after conversion
to type
float.
-
doubleValue
public double doubleValue()
Returns the value of thisUnsignedIntegeras afloat, analogous to a widening primitive conversion frominttodouble, and correctly rounded.- Specified by:
doubleValuein classNumber- Returns:
- the numeric value represented by this object after conversion
to type
double.
-
bigIntegerValue
public BigInteger bigIntegerValue()
Returns the value of thisUnsignedIntegeras aBigInteger.
-
compareTo
public int compareTo(UnsignedInteger other)
Compares this unsigned integer to another unsigned integer. Returns0if they are equal, a negative number ifthis < other, and a positive number ifthis > other.- Specified by:
compareToin interfaceComparable<UnsignedInteger>- Parameters:
other- the object to be compared.- Returns:
- a negative integer, zero, or a positive integer as this object is less than, equal to, or greater than the specified object.
-
hashCode
public int hashCode()
Description copied from class:java.lang.ObjectReturns a hash code value for the object. This method is supported for the benefit of hash tables such as those provided byHashMap.The general contract of
hashCodeis:- Whenever it is invoked on the same object more than once during
an execution of a Java application, the
hashCodemethod must consistently return the same integer, provided no information used inequalscomparisons on the object is modified. This integer need not remain consistent from one execution of an application to another execution of the same application. - If two objects are equal according to the
equals(Object)method, then calling thehashCodemethod on each of the two objects must produce the same integer result. - It is not required that if two objects are unequal
according to the
Object.equals(java.lang.Object)method, then calling thehashCodemethod on each of the two objects must produce distinct integer results. However, the programmer should be aware that producing distinct integer results for unequal objects may improve the performance of hash tables.
As much as is reasonably practical, the hashCode method defined by class
Objectdoes return distinct integers for distinct objects. (The hashCode may or may not be implemented as some function of an object's memory address at some point in time.)- Overrides:
hashCodein classObject- Returns:
- a hash code value for this object.
- See Also:
Object.equals(java.lang.Object),System.identityHashCode(java.lang.Object)
- Whenever it is invoked on the same object more than once during
an execution of a Java application, the
-
equals
public boolean equals(@Nullable Object obj)
Description copied from class:java.lang.ObjectIndicates whether some other object is "equal to" this one.The
equalsmethod implements an equivalence relation on non-null object references:- It is reflexive: for any non-null reference value
x,x.equals(x)should returntrue. - It is symmetric: for any non-null reference values
xandy,x.equals(y)should returntrueif and only ify.equals(x)returnstrue. - It is transitive: for any non-null reference values
x,y, andz, ifx.equals(y)returnstrueandy.equals(z)returnstrue, thenx.equals(z)should returntrue. - It is consistent: for any non-null reference values
xandy, multiple invocations ofx.equals(y)consistently returntrueor consistently returnfalse, provided no information used inequalscomparisons on the objects is modified. - For any non-null reference value
x,x.equals(null)should returnfalse.
The
equalsmethod for classObjectimplements the most discriminating possible equivalence relation on objects; that is, for any non-null reference valuesxandy, this method returnstrueif and only ifxandyrefer to the same object (x == yhas the valuetrue).Note that it is generally necessary to override the
hashCodemethod whenever this method is overridden, so as to maintain the general contract for thehashCodemethod, which states that equal objects must have equal hash codes.- Overrides:
equalsin classObject- Parameters:
obj- the reference object with which to compare.- Returns:
trueif this object is the same as the obj argument;falseotherwise.- See Also:
Object.hashCode(),HashMap
- It is reflexive: for any non-null reference value
-
toString
public String toString()
Returns a string representation of theUnsignedIntegervalue, in base 10.
-
-