Home | History | Annotate | Download | only in impl

Lines Matching defs:ByteBuffer

24 public class ByteBuffer
37 public ByteBuffer(int initialCapacity)
45 * @param buffer a byte array that will be wrapped with <code>ByteBuffer</code>.
47 public ByteBuffer(byte[] buffer)
55 * @param buffer a byte array that will be wrapped with <code>ByteBuffer</code>.
58 public ByteBuffer(byte[] buffer, int length)
75 public ByteBuffer(InputStream in) throws IOException
99 * @param buffer a byte array that will be wrapped with <code>ByteBuffer</code>.
103 public ByteBuffer(byte[] buffer, int offset, int length)
216 * @param anotherBuffer another <code>ByteBuffer</code>
218 public void append(ByteBuffer anotherBuffer)