Indirect the native pointer as a pointer to byte . This is equivalent to the expression ((jbyte )((char )Pointer + offset)) . @param offset offset from pointer to perform the indirection @return the byte value being pointed to
(long offset)
| 541 | * @return the <code>byte</code> value being pointed to |
| 542 | */ |
| 543 | public byte getByte(long offset) { |
| 544 | return Native.getByte(this, this.peer, offset); |
| 545 | } |
| 546 | |
| 547 | /** |
| 548 | * Indirect the native pointer as a pointer to <code>wchar_t</code>. This |