Java Unsigned Int Create toUnsignedInt(int value)

Here you can find the source of toUnsignedInt(int value)

Description

to Unsigned Int

License

Apache License

Declaration

public static int toUnsignedInt(int value) 

Method Source Code

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

public class Main {
    public static int toUnsignedInt(int value) {
        return value & 0xFF;
    }//from w ww  . java 2  s  . c o  m
}

Related

  1. toUnsignedInt(byte x)
  2. toUnsignedInt(byte[] a)
  3. toUnsignedInt(char[] bytes, boolean le)
  4. toUnsignedInt(int i)
  5. toUnsignedInt(int value)
  6. toUnsignedInt(long value)
  7. toUnsignedInt(String string)
  8. toUnsignedInt16(byte[] bytes)
  9. toUnsignedInt32LittleEndian(byte[] bytes)