|
Build 1.0_r1(from source) | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.nio.Buffer
java.nio.FloatBuffer
java.nio.FloatToByteBufferAdapter
final class FloatToByteBufferAdapter
This class wraps a byte buffer to be a float buffer.
Implementation notice:
| Field Summary |
|---|
| Fields inherited from class java.nio.Buffer |
|---|
_elementSizeShift, capacity, limit, mark, position, UNSET_MARK |
| Constructor Summary | |
|---|---|
FloatToByteBufferAdapter(ByteBuffer byteBuffer)
|
|
| Method Summary | |
|---|---|
void |
addressValidityCheck()
|
FloatBuffer |
asReadOnlyBuffer()
Returns a readonly buffer that shares content with this buffer. |
FloatBuffer |
compact()
Compacts this float buffer. |
FloatBuffer |
duplicate()
Returns a duplicated buffer that shares content with this buffer. |
void |
free()
|
float |
get()
Returns the float at the current position and increase the position by 1. |
float |
get(int index)
Returns a float at the specified index, and the position is not changed. |
org.apache.harmony.luni.platform.PlatformAddress |
getBaseAddress()
|
int |
getByteCapacity()
|
org.apache.harmony.luni.platform.PlatformAddress |
getEffectiveAddress()
|
boolean |
isAddressValid()
|
boolean |
isDirect()
Returns true if this buffer is direct. |
boolean |
isReadOnly()
Returns whether this buffer is readonly or not. |
ByteOrder |
order()
Returns the byte order used by this buffer when converting floats from/to bytes. |
protected float[] |
protectedArray()
Child class implements this method to realize array(). |
protected int |
protectedArrayOffset()
Child class implements this method to realize arrayOffset(). |
protected boolean |
protectedHasArray()
Child class implements this method to realize hasArray(). |
FloatBuffer |
put(float c)
Writes the given float to the current position and increase the position by 1. |
FloatBuffer |
put(int index,
float c)
Write a float to the specified index of this buffer and the position is not changed. |
FloatBuffer |
slice()
Returns a sliced buffer that shares content with this buffer. |
(package private) static FloatBuffer |
wrap(ByteBuffer byteBuffer)
|
| Methods inherited from class java.nio.FloatBuffer |
|---|
_array, _arrayOffset, allocate, array, arrayOffset, compareTo, equals, get, get, hasArray, hashCode, put, put, put, toString, wrap, wrap |
| Methods inherited from class java.nio.Buffer |
|---|
capacity, clear, flip, hasRemaining, limit, limit, mark, position, position, remaining, reset, rewind |
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
FloatToByteBufferAdapter(ByteBuffer byteBuffer)
| Method Detail |
|---|
static FloatBuffer wrap(ByteBuffer byteBuffer)
public int getByteCapacity()
getByteCapacity in interface org.apache.harmony.nio.internal.DirectBufferpublic org.apache.harmony.luni.platform.PlatformAddress getEffectiveAddress()
getEffectiveAddress in interface org.apache.harmony.nio.internal.DirectBufferpublic org.apache.harmony.luni.platform.PlatformAddress getBaseAddress()
getBaseAddress in interface org.apache.harmony.nio.internal.DirectBufferpublic boolean isAddressValid()
isAddressValid in interface org.apache.harmony.nio.internal.DirectBufferpublic void addressValidityCheck()
addressValidityCheck in interface org.apache.harmony.nio.internal.DirectBufferpublic void free()
free in interface org.apache.harmony.nio.internal.DirectBufferpublic FloatBuffer asReadOnlyBuffer()
FloatBufferThe returned buffer is guaranteed to be a new instance, even this buffer is readonly itself. The new buffer's position, limit, capacity and mark are the same as this buffer.
The new buffer shares content with this buffer, which means this buffer's change of content will be visible to the new buffer. The two buffer's position, limit and mark are independent.
asReadOnlyBuffer in class FloatBufferpublic FloatBuffer compact()
FloatBuffer
The remaining floats will be moved to the head of the
buffer, staring from position zero. Then the position is set to
remaining(); the limit is set to capacity; the mark is
cleared.
compact in class FloatBufferpublic FloatBuffer duplicate()
FloatBufferThe duplicated buffer's position, limit, capacity and mark are the same as this buffer. The duplicated buffer's readonly property and byte order are same as this buffer too.
The new buffer shares content with this buffer, which means either buffer's change of content will be visible to the other. The two buffer's position, limit and mark are independent.
duplicate in class FloatBufferpublic float get()
FloatBuffer
get in class FloatBufferpublic float get(int index)
FloatBuffer
get in class FloatBufferindex - The index, must be no less than zero and less than limit
public boolean isDirect()
FloatBufferA direct buffer will try its best to take advantage of native memory APIs and it may not stay in java heap, thus not affected by GC.
A float buffer is direct, if it is based on a byte buffer and the byte buffer is direct.
isDirect in class FloatBufferpublic boolean isReadOnly()
Buffer
isReadOnly in class Bufferpublic ByteOrder order()
FloatBufferfloats from/to bytes.
If this buffer is not based on a byte buffer, then always return the platform's native byte order.
order in class FloatBufferfloats from/to bytes.protected float[] protectedArray()
FloatBufferarray().
protectedArray in class FloatBufferarray()protected int protectedArrayOffset()
FloatBufferarrayOffset().
protectedArrayOffset in class FloatBufferarrayOffset()protected boolean protectedHasArray()
FloatBufferhasArray().
protectedHasArray in class FloatBufferhasArray()public FloatBuffer put(float c)
FloatBuffer
put in class FloatBufferc - The float to write
public FloatBuffer put(int index,
float c)
FloatBuffer
put in class FloatBufferindex - The index, must be no less than zero and less than the limitc - The float to write
public FloatBuffer slice()
FloatBuffer
The sliced buffer's capacity will be this buffer's
remaining(), and its zero position will correspond to
this buffer's current position. The new buffer's position will be
0, limit will be its capacity, and its mark is unset. The new buffer's
readonly property and byte order are same as this buffer.
The new buffer shares content with this buffer, which means either buffer's change of content will be visible to the other. The two buffer's position, limit and mark are independent.
slice in class FloatBuffer
|
Build 1.0_r1(from source) | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||