Java Byte to Int byteToInt(byte value)

Here you can find the source of byteToInt(byte value)

Description

byte To Int

License

Apache License

Declaration

public static int byteToInt(byte value) 

Method Source Code

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

public class Main {
    public static int byteToInt(byte value) {
        if (value < 0) {
            return value + 256;
        }//from w  w  w . j  a  va 2s .co  m
        return value;
    }
}

Related

  1. byteToInt(byte b)
  2. byteToInt(byte b0, byte b1, byte b2, byte b3)
  3. byteToInt(byte b_)
  4. byteToInt(byte Byte)
  5. byteToInt(byte myByte)
  6. byteToInt(int b)
  7. byteToInteger(final byte b)
  8. byteToInteger(final byte value)
  9. byteToNum(byte bByte)