Indirect the native pointer as a pointer to long . This is equivalent to the expression ((jlong )((char )Pointer + offset)) . @param offset byte offset from pointer to perform the indirection @return the long value being pointed to
(long offset)
| 589 | * @return the <code>long</code> value being pointed to |
| 590 | */ |
| 591 | public long getLong(long offset) { |
| 592 | return Native.getLong(this, this.peer, offset); |
| 593 | } |
| 594 | |
| 595 | /** |
| 596 | * Indirect the native pointer as a pointer to <code>long</code>. This is |
no test coverage detected