Read a single byte from the packet and advance the read position. @return The byte value read from the message
()
| 272 | * @return The byte value read from the message |
| 273 | */ |
| 274 | public byte getByte() { |
| 275 | byte res = buf[pos++]; |
| 276 | validatePos(pos); |
| 277 | return res; |
| 278 | } |
| 279 | |
| 280 | |
| 281 | /** |