Gets the signed byte value at a particular offset. @param off >= 0, < size(); offset to fetch @return signed byte at that offset
(int off)
| 120 | * @return {@code signed byte} at that offset |
| 121 | */ |
| 122 | public int getByte(int off) { |
| 123 | checkOffsets(off, off + 1); |
| 124 | return getByte0(off); |
| 125 | } |
| 126 | |
| 127 | /** |
| 128 | * Gets the {@code signed short} value at a particular offset. |
no test coverage detected