Uses of Class java.nio.FloatBuffer

Uses in package java.nio

Methods with parameter type java.nio.FloatBuffer

int
Compares two FloatBuffer objects.
FloatBuffer
Writes the content of the the FloatBUFFER src into the buffer.

Methods with return type java.nio.FloatBuffer

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