List of utility methods to do LongBuffer to ByteBuffer Convert
ByteBuffer | copyLongBufferAsByteBuffer( LongBuffer paramLongBuffer) copy Long Buffer As Byte Buffer ByteBuffer localByteBuffer = newByteBuffer(paramLongBuffer
.remaining() * 8);
paramLongBuffer.mark();
localByteBuffer.asLongBuffer().put(paramLongBuffer);
paramLongBuffer.reset();
localByteBuffer.rewind();
return localByteBuffer;
|