allocate(int capacity)
| This method allocates a new float buffer.
|
array()
| This method returns the float array that backs this buffer
|
arrayOffset()
| This method returns the offset within this buffer's backing array of the first element of the buffer
|
asReadOnlyBuffer()
| This method creates a new, read-only float buffer that shares this buffer's content.
|
compact()
| This method compacts this buffer
|
compareTo(FloatBuffer that)
| This method compares this buffer to another.
|
duplicate()
| This method creates a new float buffer that shares this buffer's content.
|
equals(Object ob)
| This method tells whether this buffer is equal to another object.
|
get()
| This method relative gets method.
|
get(float[] dst)
| This method relative bulk get method.
|
get(float[] dst, int offset, int length)
| This method relative bulk get method.
|
get(int index)
| This method absolute get method.
|
hasArray()
| This method tells whether this buffer is backed by an accessible float array.
|
hashCode()
| This method returns the current hash code of this buffer.
|
isDirect()
| This method tells whether this floating buffer is direct.
|
order()
| This method retrieves this buffer's byte order.
|
put(float f)
| This method relative put method
|
put(float[] src)
| This method relative bulk put method
|
put(float[] src, int offset, int length)
| This method relative bulk put method
|
put(FloatBuffer src)
| Relative bulk put method
|
put(int index, float f)
| Absolute put method
|
slice()
| Creates a new float buffer whose content is a shared subsequence of this buffer's content.
|
toString()
| This method returns a string summarizing the state of this buffer.
|
wrap(float[] array)
| This method wraps a float array into a buffer.
|
wrap(float[] array, int offset, int length)
| This method wraps a float array into a buffer.
|