MCPcopy Index your code
hub / github.com/OpenTSDB/asynchbase / getUnsignedInt

Method getUnsignedInt

src/Bytes.java:176–178  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

getIntMethod · 0.95

Tested by

no test coverage detected