Reads a big-endian 4-byte unsigned integer from the begining of the given array. @param b The array to read from. @return A positive integer. @throws IndexOutOfBoundsException if the byte array is too small.
(final byte[] b)
| 174 | * @throws IndexOutOfBoundsException if the byte array is too small. |
| 175 | */ |
| 176 | public static long getUnsignedInt(final byte[] b) { |
| 177 | return getUnsignedInt(b, 0); |
| 178 | } |
| 179 | |
| 180 | /** |
| 181 | * Reads a big-endian 4-byte unsigned integer from an offset in the |