Android Utililty Methods Little Endian to Int Convert

List of utility methods to do Little Endian to Int Convert

Description

The list of methods to do Little Endian to Int Convert are organized into topic(s).

Method

intlittleEndToInt(byte[] array, int start)
\copydoc littleEndToLong()
return (((array[start + 3] & 0xFF) << 24)
        | ((array[start + 2] & 0xFF) << 16)
        | ((array[start + 1] & 0xFF) << 8) | (array[start + 0] & 0xFF));