Reads eight input bytes and returns a long value. Let a be the first byte read, b be the second byte, c be the third byte, d be the fourth byte, e be the fifth byte, f be the sixth byte, g be the seventh byte, and h be the eighth byte. The value returned is: (((long)(a 0xff) 56) | ((long)(b 0xff) 48
()
| 82 | * This method is suitable for reading bytes written by the writeLong method of interface DataOutput. |
| 83 | */ |
| 84 | public abstract long readLong() throws java.io.IOException; |
| 85 | |
| 86 | /** |
| 87 | * Reads two input bytes and returns a short value. Let a be the first byte read and b be the second byte. The value returned is: |
no outgoing calls
no test coverage detected