Indirect the native pointer as a pointer to float . This is equivalent to the expression ((jfloat )((char )Pointer + offset)) . @param offset byte offset from pointer to perform the indirection @return the float value being pointed to
(long offset)
| 613 | * @return the <code>float</code> value being pointed to |
| 614 | */ |
| 615 | public float getFloat(long offset) { |
| 616 | return Native.getFloat(this, this.peer, offset); |
| 617 | } |
| 618 | |
| 619 | /** |
| 620 | * Indirect the native pointer as a pointer to <code>double</code>. This |