Java Integer to Byte IntToByte(int i)

Here you can find the source of IntToByte(int i)

Description

Int To Byte

License

Apache License

Declaration

public static byte IntToByte(int i) 

Method Source Code

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

public class Main {
    public static byte IntToByte(int i) {
        return (byte) i;
    }/*from w  w  w. jav a 2s.co  m*/
}

Related

  1. intTo1Byte(int x)
  2. intTo4Byte(int i)
  3. intToByte(byte[] buf, int off, int value)
  4. intToByte(final int i)
  5. intToByte(int i)
  6. intToByte(int i)
  7. intToByte(int i)
  8. intToByte(int i_Value)
  9. intToByte(int myInt)