Reads and returns one input byte. The byte is treated as a signed value in the range -128 through 127, inclusive. This method is suitable for reading the byte written by the writeByte method of interface DataOutput.
()
| 37 | * Reads and returns one input byte. The byte is treated as a signed value in the range -128 through 127, inclusive. This method is suitable for reading the byte written by the writeByte method of interface DataOutput. |
| 38 | */ |
| 39 | public abstract byte readByte() throws java.io.IOException; |
| 40 | |
| 41 | /** |
| 42 | * Reads an input char and returns the char value. A Unicode char is made up of two bytes. Let a be the first byte read and b be the second byte. The value returned is: |
no outgoing calls
no test coverage detected