staticIntBuffer | IntBuffer.allocate(int capacity) | Allocates a new int buffer. |
|---|
abstractIntBuffer | ByteBuffer.asIntBuffer() | Creates a view of this byte buffer as an int buffer. |
|---|
abstractIntBuffer | IntBuffer.asReadOnlyBuffer() | Creates a new, read-only int buffer that shares this buffer's content. |
|---|
abstractIntBuffer | IntBuffer.compact() | Compacts this buffer (optional operation). |
|---|
abstractIntBuffer | IntBuffer.duplicate() | Creates a new int buffer that shares this buffer's content. |
|---|
IntBuffer | IntBuffer.get(int[] dst) | Relative bulkget method. |
|---|
IntBuffer | IntBuffer.get(int[] dst, int offset, int length) | Relative bulkget method. |
|---|
abstractIntBuffer | IntBuffer.put(int i) | Relativeput method (optional operation). |
|---|
IntBuffer | IntBuffer.put(int[] src) | Relative bulkput method (optional operation). |
|---|
IntBuffer | IntBuffer.put(int[] src, int offset, int length) | Relative bulkput method (optional operation). |
|---|
abstractIntBuffer | IntBuffer.put(int index, int i) | Absoluteput method (optional operation). |
|---|
IntBuffer | IntBuffer.put(IntBuffer src) | Relative bulkput method (optional operation). |
|---|
abstractIntBuffer | IntBuffer.slice() | Creates a new int buffer whose content is a shared subsequence of this buffer's content. |
|---|
staticIntBuffer | IntBuffer.wrap(int[] array) | Wraps an int array into a buffer. |
|---|
staticIntBuffer | IntBuffer.wrap(int[] array, int offset, int length) | Wraps an int array into a buffer. |
|---|