Java Utililty Methods Array Create

List of utility methods to do Array Create

Description

The list of methods to do Array Create are organized into topic(s).

Method

byte[]toArrayLE(int val)
Get the little-endian value of an integer as a byte array.
return new byte[] { (byte) (val >> 8 * 0), (byte) (val >> 8 * 1), (byte) (val >> 8 * 2),
        (byte) (val >> 8 * 3) };