Java Byte to Int byteToPositiveInt(byte inByte)

Here you can find the source of byteToPositiveInt(byte inByte)

Description

byte To Positive Int

License

Open Source License

Declaration

public static int byteToPositiveInt(byte inByte) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static int byteToPositiveInt(byte inByte) {
        return inByte + 128;
    }/*from   www  .  ja  v  a 2 s. c  o  m*/
}

Related

  1. byteToInteger(final byte b)
  2. byteToInteger(final byte value)
  3. byteToNum(byte bByte)
  4. byteToNumString(byte b)
  5. byteToOffset(int value)
  6. ubyte2int(byte in)
  7. ubyte2int(final byte x)