staticShortBuffer | ShortBuffer.allocate(int capacity) | Allocates a new short buffer. |
|---|
abstractShortBuffer | ShortBuffer.asReadOnlyBuffer() | Creates a new, read-only short buffer that shares this buffer's content. |
|---|
abstractShortBuffer | ByteBuffer.asShortBuffer() | Creates a view of this byte buffer as a short buffer. |
|---|
abstractShortBuffer | ShortBuffer.compact() | Compacts this buffer (optional operation). |
|---|
abstractShortBuffer | ShortBuffer.duplicate() | Creates a new short buffer that shares this buffer's content. |
|---|
ShortBuffer | ShortBuffer.get(short[] dst) | Relative bulkget method. |
|---|
ShortBuffer | ShortBuffer.get(short[] dst, int offset, int length) | Relative bulkget method. |
|---|
abstractShortBuffer | ShortBuffer.put(int index, short s) | Absoluteput method (optional operation). |
|---|
abstractShortBuffer | ShortBuffer.put(short s) | Relativeput method (optional operation). |
|---|
ShortBuffer | ShortBuffer.put(short[] src) | Relative bulkput method (optional operation). |
|---|
ShortBuffer | ShortBuffer.put(short[] src, int offset, int length) | Relative bulkput method (optional operation). |
|---|
ShortBuffer | ShortBuffer.put(ShortBuffer src) | Relative bulkput method (optional operation). |
|---|
abstractShortBuffer | ShortBuffer.slice() | Creates a new short buffer whose content is a shared subsequence of this buffer's content. |
|---|
staticShortBuffer | ShortBuffer.wrap(short[] array) | Wraps a short array into a buffer. |
|---|
staticShortBuffer | ShortBuffer.wrap(short[] array, int offset, int length) | Wraps a short array into a buffer. |
|---|