The list of methods to do Unsigned Long Create are organized into topic(s).
long
toUnsignedLong(int x) Converts the argument to a long by an unsigned conversion.
return ((long) x) & 0xffffffffL;
long
toUnsignedLong(int x) This method handles the specified (potentially negative) int as unsigned bit representation and returns the positive converted long.
return ((long) x) & 0xFFFFffffL;