Set value at location being pointed to. This is equivalent to the expression ((jbyte )((char )Pointer + offset)) = value . @param offset byte offset from pointer at which value must be set @param value byte value to set
(long offset, byte value)
| 990 | * @param value <code>byte</code> value to set |
| 991 | */ |
| 992 | public void setByte(long offset, byte value) { |
| 993 | Native.setByte(this, this.peer, offset, value); |
| 994 | } |
| 995 | |
| 996 | /** |
| 997 | * Set <code>value</code> at location being pointed to. This is equivalent |