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

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

Introduction

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

The text is from its open source code.

Field

UnsignedLongZERO
UnsignedLongONE
UnsignedLongMAX_VALUE

Method

BigIntegerbigIntegerValue()
Returns the value of this UnsignedLong as a BigInteger .
intcompareTo(UnsignedLong o)
UnsignedLongdividedBy(UnsignedLong val)
Returns the result of dividing this by val .
doubledoubleValue()
Returns the value of this UnsignedLong as a double , analogous to a widening primitive conversion from long to double , and correctly rounded.
UnsignedLongfromLongBits(long bits)
Returns an UnsignedLong corresponding to a given bit representation.
intintValue()
Returns the value of this UnsignedLong as an int .
longlongValue()
Returns the value of this UnsignedLong as a long .
UnsignedLongmod(UnsignedLong val)
Returns this modulo val .
UnsignedLongplus(UnsignedLong val)
Returns the result of adding this and val .
UnsignedLongtimes(UnsignedLong val)
Returns the result of multiplying this and val .
StringtoString()
Returns a string representation of the UnsignedLong value, in base 10.
UnsignedLongvalueOf(String string, int radix)
Returns an UnsignedLong holding the value of the specified String , parsed as an unsigned long value in the specified radix.
UnsignedLongvalueOf(long value)
Returns an UnsignedLong representing the same value as the specified long .
UnsignedLongvalueOf(BigInteger value)
Returns a UnsignedLong representing the same value as the specified BigInteger .
UnsignedLongvalueOf(String string)
Returns an UnsignedLong holding the value of the specified String , parsed as an unsigned long value.