Android Utililty Methods Big Endian to Char Convert

List of utility methods to do Big Endian to Char Convert

Description

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

Method

charbigEndToChar(byte[] array, int start)
Converts a byte array into char from big-endian format.
return (char) bigEndToShort(array, start);