Java Integer to Byte intAsByte(int value)

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

Description

int As Byte

License

Open Source License

Declaration

public static byte intAsByte(int value) 

Method Source Code

//package com.java2s;

public class Main {
    public static byte intAsByte(int value) {
        return (byte) (value & 0xff);
    }/* ww  w  .ja va  2 s. c o m*/
}

Related

  1. int2ByteArray(int value)
  2. int2byteArray(int[] i)
  3. int2ByteArrayLength4(int theInt)
  4. int2ToByteArray(int value)
  5. int2ubyte(int in)
  6. intTo1Byte(int x)
  7. intTo4Byte(int i)
  8. intToByte(byte[] buf, int off, int value)
  9. intToByte(final int i)