MappedByteBufferAdapter.java | 253 public ByteBuffer put(byte b) { method in class:MappedByteBufferAdapter 256 this.wrapped.put(b); 262 public ByteBuffer put(byte[] src, int off, int len) { method in class:MappedByteBufferAdapter 265 this.wrapped.put(src, off, len); 271 public ByteBuffer put(int index, byte b) { method in class:MappedByteBufferAdapter 274 this.wrapped.put(index, b);
|