Uses of Class
java.nio.IntBuffer
Packages that use IntBuffer
Package
Description
Defines buffers, which are containers for data, and provides an
overview of the other NIO packages.
-
Uses of IntBuffer in java.nio
Modifier and TypeMethodDescriptionstatic IntBufferIntBuffer.allocate(int capacity)Allocates a new int buffer.abstract IntBufferByteBuffer.asIntBuffer()Creates a view of this byte buffer as an int buffer.abstract IntBufferIntBuffer.asReadOnlyBuffer()Creates a new, read-only int buffer that shares this buffer's content.IntBuffer.clear()Clears this buffer.abstract IntBufferIntBuffer.compact()Compacts this buffer (optional operation).abstract IntBufferIntBuffer.duplicate()Creates a new int buffer that shares this buffer's content.IntBuffer.flip()Flips this buffer.IntBuffer.get(int[] dst)Relative bulk get method.IntBuffer.get(int[] dst, int offset, int length)Relative bulk get method.IntBuffer.get(int index, int[] dst)Absolute bulk get method.IntBuffer.get(int index, int[] dst, int offset, int length)Absolute bulk get method.IntBuffer.limit(int newLimit)Sets this buffer's limit.IntBuffer.mark()Sets this buffer's mark at its position.IntBuffer.position(int newPosition)Sets this buffer's position.abstract IntBufferIntBuffer.put(int i)Relative put method (optional operation).IntBuffer.put(int[] src)Relative bulk put method (optional operation).IntBuffer.put(int[] src, int offset, int length)Relative bulk put method (optional operation).abstract IntBufferIntBuffer.put(int index, int i)Absolute put method (optional operation).IntBuffer.put(int index, int[] src)Absolute bulk put method (optional operation).IntBuffer.put(int index, int[] src, int offset, int length)Absolute bulk put method (optional operation).Absolute bulk put method (optional operation).Relative bulk put method (optional operation).IntBuffer.reset()Resets this buffer's position to the previously-marked position.IntBuffer.rewind()Rewinds this buffer.abstract IntBufferIntBuffer.slice()Creates a new int buffer whose content is a shared subsequence of this buffer's content.abstract IntBufferIntBuffer.slice(int index, int length)Creates a new int buffer whose content is a shared subsequence of this buffer's content.static IntBufferIntBuffer.wrap(int[] array)Wraps an int array into a buffer.static IntBufferIntBuffer.wrap(int[] array, int offset, int length)Wraps an int array into a buffer.Modifier and TypeMethodDescriptionintCompares this buffer to another.intFinds and returns the relative index of the first mismatch between this buffer and a given buffer.Absolute bulk put method (optional operation).Relative bulk put method (optional operation).