Java Unsigned Number Create unsignedInt(int i)

Here you can find the source of unsignedInt(int i)

Description

unsigned Int

License

Open Source License

Declaration

public static long unsignedInt(int i) 

Method Source Code

//package com.java2s;

public class Main {
    public static long unsignedInt(int i) {
        long l = i;
        l = l & (0xFFFFFFFFL);//from w  w  w  .  ja  va2  s .  c  o  m
        return l;
    }
}

Related

  1. unsignedConstraintValue(double v, double min, double max)
  2. unsignedDiv(long l1, long l2)
  3. unsignedExtend(String hex)
  4. unsignedHalfwordToString(int value)
  5. unsignedInt(byte b)
  6. unsignedInt(int value)
  7. unsignedInt2ByteLE(byte[] bytes, long value, int offset)
  8. unsignedInt2Long(int x)
  9. unsignedInt32ToBytes(long v)