Java Integer Create toInt(byte in0, byte in1, byte in2, byte in3)

Here you can find the source of toInt(byte in0, byte in1, byte in2, byte in3)

Description

to Int

License

Open Source License

Declaration

public static int toInt(byte in0, byte in1, byte in2, byte in3) 

Method Source Code

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

public class Main {
    public static int toInt(byte in0, byte in1, byte in2, byte in3) {
        return (in0 & 0xFF) | ((in1 & 0xFF) << 8) | ((in2 & 0xFF) << 16) | ((in3 & 0xFF) << 24);
    }/*from   ww w  . java  2  s.c  o  m*/

    public static int toInt(byte[] in) {
        return toInt(in[0], in[1], in[2], in[3]);
    }

    public static int toInt(byte[] in, int ofs) {
        return toInt(in[ofs + 0], in[ofs + 1], in[ofs + 2], in[ofs + 3]);
    }
}

Related

  1. toInt(boolean[] bits)
  2. toInt(byte b)
  3. toInt(byte b1, byte b2, byte b3, byte b4)
  4. toInt(byte byte0, byte byte1, byte byte2, byte byte3)
  5. toInt(byte byte3, byte byte2, byte byte1, byte byte0)
  6. toInt(byte mostSignificant, byte leastSignificant)
  7. toInt(byte src)
  8. toInt(byte value)
  9. toInt(byte... b)