List of utility methods to do IntBuffer to ByteBuffer Convert
ByteBuffer | copyIntBufferAsByteBuffer( IntBuffer paramIntBuffer) copy Int Buffer As Byte Buffer ByteBuffer localByteBuffer = newByteBuffer(paramIntBuffer
.remaining() * 4);
paramIntBuffer.mark();
localByteBuffer.asIntBuffer().put(paramIntBuffer);
paramIntBuffer.reset();
localByteBuffer.rewind();
return localByteBuffer;
|