The methods of Java.Nio.FloatBuffer are listed below. For a list of all members, see the FloatBuffer Members list.
See Also: Inherited members from Java.Nio.Buffer
| static  | Allocate(int) Creates a float buffer based on a newly allocated float array. | |
| override  | ArrayOffset() Returns the offset into the array returned by array of the first element of the buffer (optional operation). | |
| abstract  | AsReadOnlyBuffer() Returns a read-only buffer that shares its content with this buffer. | |
| abstract  | Compact() Compacts this float buffer. | |
| CompareTo(FloatBuffer) Compare the remaining floats of this buffer to another float buffer's remaining floats. | ||
| abstract  | Duplicate() Returns a duplicated buffer that shares its content with this buffer. | |
| abstract  | Get() Returns the float at the current position and increases the position by 1. | |
| abstract  | Get(int) Returns a float at the specified index; the position is not changed. | |
| Get(float[]) Reads floats from the current position into the specified float array and increases the position by the number of floats read. | ||
| Get(float[], int, int) Reads floats from the current position into the specified float array, starting from the specified offset, and increases the position by the number of floats read. | ||
| abstract  | Order() Returns the byte order used by this buffer when converting floats from/to bytes. | |
| Put(FloatBuffer) Writes all the remaining floats of the src float buffer to this buffer's current position, and increases both buffers' position by the number of floats copied. | ||
| abstract  | Put(float) Writes the given float to the current position and increases the position by 1. | |
| Put(float[]) Writes floats from the given float array to the current position and increases the position by the number of floats written. | ||
| abstract  | Put(int, float) Writes a float to the specified index of this buffer; the position is not changed. | |
| Put(float[], int, int) Writes floats from the given float array, starting from the specified offset, to the current position and increases the position by the number of floats written. | ||
| abstract  | Slice() Returns a sliced buffer that shares its content with this buffer. | |
| static  | Wrap(float[]) Creates a new float buffer by wrapping the given float array. | |
| static  | Wrap(float[], int, int) Creates a new float buffer by wrapping the given float array. | |