Uses of Class java.nio.IntBuffer

Uses in package java.nio

Methods with parameter type java.nio.IntBuffer

int
Compares two IntBuffer objects.
IntBuffer
Writes the content of the the IntBUFFER src into the buffer.

Methods with return type java.nio.IntBuffer

IntBuffer
IntBuffer.allocate(int capacity)
Allocates a new IntBuffer object with a given capacity.
IntBuffer
Creates a view of this byte buffer as an integer buffer.
IntBuffer
Creates a new read-only IntBuffer that shares this buffer's content.
IntBuffer
Compacts this buffer.
IntBuffer
Creates a new IntBuffer that shares this buffer's content.
IntBuffer
IntBuffer.get(int[] dst)
This method transfers ints from this buffer into the given destination array.
IntBuffer
IntBuffer.get(int[] dst, int offset, int length)
This method transfers ints from this buffer into the given destination array.
IntBuffer
IntBuffer.put(int b)
Writes the int at this buffer's current position, and then increments the position.
IntBuffer
IntBuffer.put(int index, int b)
Absolute put method.
IntBuffer
IntBuffer.put(int[] src)
Writes the content of the the int array src into the buffer.
IntBuffer
IntBuffer.put(int[] src, int offset, int length)
Writes the content of the the int array src into the buffer.
IntBuffer
Writes the content of the the IntBUFFER src into the buffer.
IntBuffer
Creates a new IntBuffer whose content is a shared subsequence of this buffer's content.
IntBuffer
IntBuffer.wrap(int[] array)
Wraps a int array into a IntBuffer object.
IntBuffer
IntBuffer.wrap(int[] array, int offset, int length)
Wraps a int array into a IntBuffer object.