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