Java Byte to Int byteToInt(byte b)

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

Description

byte To Int

License

Open Source License

Declaration

public static int byteToInt(byte b) 

Method Source Code

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

public class Main {
    public static int byteToInt(byte b) {
        return b & 0xFF;
    }//from   ww w. j a  v a  2  s. c  om
}

Related

  1. byte2int(final byte b)
  2. byte2integer(byte b)
  3. byte2integer(byte b)
  4. byteToInt(byte b)
  5. byteToInt(byte b)
  6. byteToInt(byte b0, byte b1, byte b2, byte b3)
  7. byteToInt(byte b_)
  8. byteToInt(byte Byte)
  9. byteToInt(byte myByte)