Indirect the native pointer as a pointer to int . This is equivalent to the expression ((jint )((char )Pointer + offset)) . @param offset byte offset from pointer to perform the indirection @return the int value being pointed to
(long offset)
| 577 | * @return the <code>int</code> value being pointed to |
| 578 | */ |
| 579 | public int getInt(long offset) { |
| 580 | return Native.getInt(this, this.peer, offset); |
| 581 | } |
| 582 | |
| 583 | /** |
| 584 | * Indirect the native pointer as a pointer to <code>long</code>. This is |