Android Utililty Methods Big Endian to Short Convert

List of utility methods to do Big Endian to Short Convert

Description

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

Method

shortbigEndToShort(byte[] array, int start)
Converts a byte array into short from big-endian format.
return (short) ((array[start + 0] << 8) | (array[start + 1] & 0xFF));