List of utility methods to do Unsigned Long Create
long | toUnsignedLong(int intValue) Returns the int as an unsigned long (no sign extension). return ((long) intValue) & 0xffffffffL; |
long | toUnsignedLong(int number) to Unsigned Long return number < 0 ? 0x100000000L + (long) number : (long) number; |
long | toUnsignedLong(int x) Converts the argument to a long by an unsigned conversion. return ((long) x) & 0xffffffffL; |
long | toUnsignedLong(int x) to Unsigned Long 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; |