|
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.DoubleBuffer
java.nio.DoubleToByteBufferAdapter
final class DoubleToByteBufferAdapter
This class wraps a byte buffer to be a double buffer.
Implementation notice:
| Field Summary |
|---|
| Fields inherited from class java.nio.Buffer |
|---|
_elementSizeShift, capacity, limit, mark, position, UNSET_MARK |
| Constructor Summary | |
|---|---|
DoubleToByteBufferAdapter(ByteBuffer byteBuffer)
|
|
| Method Summary | |
|---|---|
void |
addressValidityCheck()
|
DoubleBuffer |
asReadOnlyBuffer()
Returns a readonly buffer that shares content with this buffer. |
DoubleBuffer |
compact()
Compacts this double buffer. |
DoubleBuffer |
duplicate()
Returns a duplicated buffer that shares content with this buffer. |
void |
free()
|
double |
get()
Returns the double at the current position and increase the position by 1. |
double |
get(int index)
Returns a double 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 doubles from/to bytes. |
protected double[] |
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(). |
DoubleBuffer |
put(double c)
Writes the given double to the current position and increase the position by 1. |
DoubleBuffer |
put(int index,
double c)
Write a double to the specified index of this buffer and the position is not changed. |
DoubleBuffer |
slice()
Returns a sliced buffer that shares content with this buffer. |
(package private) static DoubleBuffer |
wrap(ByteBuffer byteBuffer)
|
| Methods inherited from class java.nio.DoubleBuffer |
|---|
_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 |
|---|
DoubleToByteBufferAdapter(ByteBuffer byteBuffer)
| Method Detail |
|---|
static DoubleBuffer 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 DoubleBuffer asReadOnlyBuffer()
DoubleBufferThe 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 DoubleBufferpublic DoubleBuffer compact()
DoubleBuffer
The remaining doubles 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 DoubleBufferpublic DoubleBuffer duplicate()
DoubleBufferThe 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 DoubleBufferpublic double get()
DoubleBuffer
get in class DoubleBufferpublic double get(int index)
DoubleBuffer
get in class DoubleBufferindex - The index, must be no less than zero and less than limit
public boolean isDirect()
DoubleBufferA 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 double buffer is direct, if it is based on a byte buffer and the byte buffer is direct.
isDirect in class DoubleBufferpublic boolean isReadOnly()
Buffer
isReadOnly in class Bufferpublic ByteOrder order()
DoubleBufferdoubles 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 DoubleBufferdoubles from/to bytes.protected double[] protectedArray()
DoubleBufferarray().
protectedArray in class DoubleBufferarray()protected int protectedArrayOffset()
DoubleBufferarrayOffset().
protectedArrayOffset in class DoubleBufferarrayOffset()protected boolean protectedHasArray()
DoubleBufferhasArray().
protectedHasArray in class DoubleBufferhasArray()public DoubleBuffer put(double c)
DoubleBuffer
put in class DoubleBufferc - The double to write
public DoubleBuffer put(int index,
double c)
DoubleBuffer
put in class DoubleBufferindex - The index, must be no less than zero and less than the limitc - The double to write
public DoubleBuffer slice()
DoubleBuffer
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 DoubleBuffer
|
Build 1.0_r1(from source) | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||