Android Utililty Methods Little Endian to Char Convert

List of utility methods to do Little Endian to Char Convert

Description

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

Method

charlittleEndToChar(byte[] array, int start)
\copydoc littleEndToLong()
return (char) ((array[start + 1] << 8) | (array[start] & 0xFF));