Reads a big-endian 8-byte long from the begining of the given array. @param b The array to read from. @return A long integer. @throws IndexOutOfBoundsException if the byte array is too small.
(final byte[] b)
| 230 | * @throws IndexOutOfBoundsException if the byte array is too small. |
| 231 | */ |
| 232 | public static long getLong(final byte[] b) { |
| 233 | return getLong(b, 0); |
| 234 | } |
| 235 | |
| 236 | /** |
| 237 | * Reads a big-endian 8-byte long from an offset in the given array. |
no outgoing calls