Java Utililty Methods ByteBuffer Rewind

List of utility methods to do ByteBuffer Rewind

Description

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

Method

voidrewind(ByteBuffer b)
rewind
b.reset(); 
voidrewind(ByteBuffer[] bufs)
rewind
for (int i = 0; i < bufs.length; i++) {
    bufs[i].rewind();