Android Utililty Methods LongBuffer to ByteBuffer Convert

List of utility methods to do LongBuffer to ByteBuffer Convert

Description

The list of methods to do LongBuffer to ByteBuffer Convert are organized into topic(s).

Method

ByteBuffercopyLongBufferAsByteBuffer( 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;