Uses of Class
com.google.common.primitives.UnsignedLong
-
Packages that use UnsignedLong Package Description com.google.common.primitives Static utilities for the eight primitive types andvoid
, and value types for treating them as unsigned or storing them in immutable arrays. -
-
Uses of UnsignedLong in com.google.common.primitives
Fields in com.google.common.primitives declared as UnsignedLong Modifier and Type Field Description static UnsignedLong
UnsignedLong. MAX_VALUE
static UnsignedLong
UnsignedLong. ONE
static UnsignedLong
UnsignedLong. ZERO
Methods in com.google.common.primitives that return UnsignedLong Modifier and Type Method Description UnsignedLong
UnsignedLong. dividedBy(UnsignedLong val)
Returns the result of dividing this byval
.static UnsignedLong
UnsignedLong. fromLongBits(long bits)
Returns anUnsignedLong
corresponding to a given bit representation.UnsignedLong
UnsignedLong. minus(UnsignedLong val)
Returns the result of subtracting this andval
.UnsignedLong
UnsignedLong. mod(UnsignedLong val)
Returns this moduloval
.UnsignedLong
UnsignedLong. plus(UnsignedLong val)
Returns the result of adding this andval
.UnsignedLong
UnsignedLong. times(UnsignedLong val)
Returns the result of multiplying this andval
.static UnsignedLong
UnsignedLong. valueOf(long value)
Returns anUnsignedLong
representing the same value as the specifiedlong
.static UnsignedLong
UnsignedLong. valueOf(java.lang.String string)
Returns anUnsignedLong
holding the value of the specifiedString
, parsed as an unsignedlong
value.static UnsignedLong
UnsignedLong. valueOf(java.lang.String string, int radix)
Returns anUnsignedLong
holding the value of the specifiedString
, parsed as an unsignedlong
value in the specified radix.static UnsignedLong
UnsignedLong. valueOf(java.math.BigInteger value)
Returns aUnsignedLong
representing the same value as the specifiedBigInteger
.Methods in com.google.common.primitives with parameters of type UnsignedLong Modifier and Type Method Description int
UnsignedLong. compareTo(UnsignedLong o)
UnsignedLong
UnsignedLong. dividedBy(UnsignedLong val)
Returns the result of dividing this byval
.UnsignedLong
UnsignedLong. minus(UnsignedLong val)
Returns the result of subtracting this andval
.UnsignedLong
UnsignedLong. mod(UnsignedLong val)
Returns this moduloval
.UnsignedLong
UnsignedLong. plus(UnsignedLong val)
Returns the result of adding this andval
.UnsignedLong
UnsignedLong. times(UnsignedLong val)
Returns the result of multiplying this andval
.
-