Creates a new byte buffer that shares this bit buffer's content. The content of the new buffer will be that of this buffer. Changes to this buffer's content will be visible in the new buffer, and vice versa; the two buffers' position, limit, and mark values will be independent.
The new buffer's capacity, limit, position, and mark values will be comparable to those of this buffer in their respective units (bits vs. bytes.) The new buffer will be direct if, and only if, this buffer is direct, and it will be read-only if, and only if, this buffer is read-only. @return a byte buffer that is wrapped around this buffers data
|
|