Java Integer to intToUnsignedInt(int data)

Here you can find the source of intToUnsignedInt(int data)

Description

int to unsigned int

License

Apache License

Parameter

Parameter Description
data a parameter

Return

long(just store the unsigned int)

Declaration

public static long intToUnsignedInt(int data) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    /**//from w w w. j a v  a2  s.c o m
     * int to unsigned int
     * 
     * @param data
     * @return long(just store the unsigned int)
     */
    public static long intToUnsignedInt(int data) {
        return data & 0xffffffffL;
    }
}

Related

  1. intToTwoHexString(final int value)
  2. intToUByte(int i)
  3. intToULong(int signed)
  4. intToUnsigned(int signed)
  5. intToUnsignedByte(int i)
  6. intToUnsignedLong(int data)
  7. intToUnsignedShort(int value)
  8. intToWeb(int color)
  9. intToZigZag(final int n)