Indirect the native pointer as a pointer to double . This is equivalent to the expression ((jdouble )((char )Pointer + offset)) . @param offset byte offset from pointer to perform the indirection @return the double value being pointed to
(long offset)
| 625 | * @return the <code>double</code> value being pointed to |
| 626 | */ |
| 627 | public double getDouble(long offset) { |
| 628 | return Native.getDouble(this, this.peer, offset); |
| 629 | } |
| 630 | |
| 631 | /** |
| 632 | * Indirect the native pointer as a pointer to pointer. This is equivalent |