GNU Classpath (0.95) | |
Frames | No Frames |
Methods with parameter type java.nio.LongBuffer | |
int | Compares two LongBuffer objects.
|
LongBuffer | Writes the content of the the LongBUFFER src
into the buffer. |
Methods with return type java.nio.LongBuffer | |
LongBuffer | LongBuffer.allocate(int capacity) Allocates a new LongBuffer object with a given capacity.
|
LongBuffer | Creates a view of this byte buffer as a long buffer.
|
LongBuffer | Creates a new read-only LongBuffer that shares this
buffer's content.
|
LongBuffer | Compacts this buffer.
|
LongBuffer | Creates a new LongBuffer that shares this buffer's
content.
|
LongBuffer | LongBuffer.get(long[] dst) This method transfers long s from this buffer into the given
destination array.
|
LongBuffer | LongBuffer.get(long[] dst, int offset, int length) This method transfers long s from this buffer into the given
destination array. |
LongBuffer | LongBuffer.put(int index, long b) Absolute put method.
|
LongBuffer | Writes the content of the the LongBUFFER src
into the buffer. |
LongBuffer | LongBuffer.put(long b) Writes the long at this buffer's current position,
and then increments the position.
|
LongBuffer | LongBuffer.put(long[] src) Writes the content of the the long array src
into the buffer.
|
LongBuffer | LongBuffer.put(long[] src, int offset, int length) Writes the content of the the long array src
into the buffer. |
LongBuffer | Creates a new LongBuffer whose content is a shared
subsequence of this buffer's content.
|
LongBuffer | LongBuffer.wrap(long[] array) Wraps a long array into a LongBuffer
object.
|
LongBuffer | LongBuffer.wrap(long[] array, int offset, int length) Wraps a long array into a LongBuffer
object.
|
GNU Classpath (0.95) |