Android Utililty Methods Big Endian to Char Convert
List of utility methods to do Big Endian to Char Convert
HOME
Android
B
Big Endian to Char Convert
Description
The list of methods to do Big Endian to Char Convert are organized into topic(s).
Method
char
bigEndToChar(byte[] array, int start)
Converts a byte array into char from big-endian format.
return
(
char
) bigEndToShort(array, start);