Set value at location being pointed to. This is equivalent to the expression ((jfloat )((char )Pointer + offset)) = value . @param offset byte offset from pointer at which value must be set @param value float value to set
(long offset, float value)
| 1072 | * @param value <code>float</code> value to set |
| 1073 | */ |
| 1074 | public void setFloat(long offset, float value) { |
| 1075 | Native.setFloat(this, this.peer, offset, value); |
| 1076 | } |
| 1077 | |
| 1078 | /** |
| 1079 | * Set <code>value</code> at location being pointed to. This is equivalent |