public interface Buffer extends Comparable<Buffer>
ByteBuffer was taken as base for Grizzly
Buffer interface, but Buffer has several extensions:
it's possible to prepend some data to a Buffer and release Buffer, when
it's not required any more.| Modifier and Type | Method and Description |
|---|---|
int |
capacity()
Returns this buffer's capacity.
|
Buffer |
clear()
Clears this buffer.
|
void |
dispose()
Notify the allocator that the space for this Buffer is no
longer needed.
|
Buffer |
duplicate()
Creates a new
Buffer that shares this buffer's content. |
Buffer |
flip()
Flips this buffer.
|
byte |
get()
Relative get method.
|
Buffer |
get(byte[] dst)
Relative bulk get method.
|
Buffer |
get(byte[] dst,
int offset,
int length)
Relative bulk get method.
|
byte |
get(int index)
Absolute get method.
|
char |
getChar()
Relative get method for reading a char value.
|
char |
getChar(int index)
Absolute get method for reading a char value.
|
double |
getDouble()
Relative get method for reading a double value.
|
double |
getDouble(int index)
Absolute get method for reading a double value.
|
float |
getFloat()
Relative get method for reading a float value.
|
float |
getFloat(int index)
Absolute get method for reading a float value.
|
int |
getInt()
Relative get method for reading an int value.
|
int |
getInt(int index)
Absolute get method for reading an int value.
|
long |
getLong()
Relative get method for reading a long value.
|
long |
getLong(int index)
Absolute get method for reading a long value.
|
short |
getShort()
Relative get method for reading a short value.
|
short |
getShort(int index)
Absolute get method for reading a short value.
|
boolean |
hasRemaining()
Tells whether there are any elements between the current position and
the limit.
|
int |
limit()
Returns this buffer's limit.
|
Buffer |
limit(int newLimit)
Sets this buffer's limit.
|
Buffer |
mark()
Sets this buffer's mark at its position.
|
int |
position()
Returns this buffer's position.
|
Buffer |
position(int newPosition)
Sets this buffer's position.
|
Buffer |
put(byte b)
Relative put method (optional operation).
|
Buffer |
put(byte[] src)
Relative bulk put method (optional operation).
|
Buffer |
put(byte[] src,
int offset,
int length)
Relative bulk put method (optional operation).
|
Buffer |
put(int index,
byte b)
Absolute put method (optional operation).
|
Buffer |
putChar(char value)
Relative put method for writing a char
value (optional operation).
|
Buffer |
putChar(int index,
char value)
Absolute put method for writing a char
value (optional operation).
|
Buffer |
putDouble(double value)
Relative put method for writing a double
value (optional operation).
|
Buffer |
putDouble(int index,
double value)
Absolute put method for writing a double
value (optional operation).
|
Buffer |
putFloat(float value)
Relative put method for writing a float
value (optional operation).
|
Buffer |
putFloat(int index,
float value)
Absolute put method for writing a float
value (optional operation).
|
Buffer |
putInt(int value)
Relative put method for writing an int
value (optional operation).
|
Buffer |
putInt(int index,
int value)
Absolute put method for writing an int
value (optional operation).
|
Buffer |
putLong(int index,
long value)
Absolute put method for writing a long
value (optional operation).
|
Buffer |
putLong(long value)
Relative put method for writing a long
value (optional operation).
|
Buffer |
putShort(int index,
short value)
Absolute put method for writing a short
value (optional operation).
|
Buffer |
putShort(short value)
Relative put method for writing a short
value (optional operation).
|
int |
remaining()
Returns the number of elements between the current position and the
limit.
|
Buffer |
reset()
Resets this buffer's position to the previously-marked position.
|
Buffer |
rewind()
Rewinds this buffer.
|
void |
shrink()
Disposes the buffer part, outside [position, limit] interval if possible.
|
String |
toStringContent()
|
String |
toStringContent(Charset charset)
|
String |
toStringContent(Charset charset,
int position,
int limit)
|
Object |
underlying()
Return the underlying buffer
|
compareToBuffer duplicate()
Buffer that shares this buffer's content.
The content of the new buffer will be that of this buffer. Changes to this buffer's content will be visible in the new buffer, and vice versa; the two buffer's position, limit, and mark values will be independent.
The new buffer's capacity, limit, position, and mark values will be identical to those of this buffer. The new buffer will be direct if, and only if, this buffer is direct, and it will be read-only if, and only if, this buffer is read-only.
Buffervoid shrink()
void dispose()
Object underlying()
int capacity()
int position()
Buffer position(int newPosition)
newPosition - The new position value; must be non-negative
and no larger than the current limitIllegalArgumentException - If the preconditions on newPosition do not holdint limit()
Buffer limit(int newLimit)
newLimit - The new limit value; must be non-negative
and no larger than this buffer's capacityIllegalArgumentException - If the preconditions on newLimit do not holdBuffer mark()
Buffer reset()
Invoking this method neither changes nor discards the mark's value.
InvalidMarkException - If the mark has not been setBuffer clear()
Invoke this method before using a sequence of channel-read or put operations to fill this buffer. For example:
buf.clear(); // Prepare buffer for reading in.read(buf); // Read data
This method does not actually erase the data in the buffer, but it is named as if it did because it will most often be used in situations in which that might as well be the case.
Buffer flip()
After a sequence of channel-read or put operations, invoke this method to prepare for a sequence of channel-write or relative get operations. For example:
buf.put(magic); // Prepend header in.read(buf); // Read data into rest of buffer buf.flip(); // Flip buffer out.write(buf); // Write header + data to channel
Buffer rewind()
Invoke this method before a sequence of channel-write or get operations, assuming that the limit has already been set appropriately. For example:
out.write(buf); // Write remaining data buf.rewind(); // Rewind buffer buf.get(array); // Copy data into array
int remaining()
boolean hasRemaining()
byte get()
BufferUnderflowException - If the buffer's current position is not smaller than its limitBuffer put(byte b)
Writes the given byte into this buffer at the current position, and then increments the position.
b - The byte to be writtenBufferOverflowException - If this buffer's current position is not smaller than its limitReadOnlyBufferException - If this buffer is read-onlybyte get(int index)
index - The index from which the byte will be readIndexOutOfBoundsException - If index is negative
or not smaller than the buffer's limitBuffer put(int index, byte b)
Writes the given byte into this buffer at the given index.
index - The index at which the byte will be writtenb - The byte value to be writtenIndexOutOfBoundsException - If index is negative
or not smaller than the buffer's limitReadOnlyBufferException - If this buffer is read-onlyBuffer get(byte[] dst, int offset, int length)
This method transfers bytes from this buffer into the given
destination array. If there are fewer bytes remaining in the
buffer than are required to satisfy the request, that is, if
length > remaining(), then no
bytes are transferred and a BufferUnderflowException is
thrown.
Otherwise, this method copies length bytes from this buffer into the given array, starting at the current position of this buffer and at the given offset in the array. The position of this buffer is then incremented by length.
In other words, an invocation of this method of the form src.get(dst, off, len) has exactly the same effect as the loop
for (int i = off; i < off + len; i++)
dst[i] = src.get();
except that it first checks that there are sufficient bytes in
this buffer and it is potentially much more efficient. dst - The array into which bytes are to be writtenoffset - The offset within the array of the first byte to be
written; must be non-negative and no larger than
dst.lengthlength - The maximum number of bytes to be written to the given
array; must be non-negative and no larger than
dst.length - offsetBufferUnderflowException - If there are fewer than length bytes
remaining in this bufferIndexOutOfBoundsException - If the preconditions on the offset and length
parameters do not holdBuffer get(byte[] dst)
This method transfers bytes from this buffer into the given destination array. An invocation of this method of the form src.get(a) behaves in exactly the same way as the invocation
src.get(a, 0, a.length) dst - the destination byte arrayBufferUnderflowException - If there are fewer than length bytes
remaining in this bufferBuffer put(byte[] src, int offset, int length)
This method transfers bytes into this buffer from the given
source array. If there are more bytes to be copied from the array
than remain in this buffer, that is, if
length > remaining(), then no
bytes are transferred and a BufferOverflowException is
thrown.
Otherwise, this method copies length bytes from the given array into this buffer, starting at the given offset in the array and at the current position of this buffer. The position of this buffer is then incremented by length.
In other words, an invocation of this method of the form dst.put(src, off, len) has exactly the same effect as the loop
for (int i = off; i < off + len; i++)
dst.put(a[i]);
except that it first checks that there is sufficient space in this
buffer and it is potentially much more efficient. src - The array from which bytes are to be readoffset - The offset within the array of the first byte to be read;
must be non-negative and no larger than array.lengthlength - The number of bytes to be read from the given array;
must be non-negative and no larger than
array.length - offsetBufferOverflowException - If there is insufficient space in this bufferIndexOutOfBoundsException - If the preconditions on the offset and length
parameters do not holdReadOnlyBufferException - If this buffer is read-onlyBuffer put(byte[] src)
This method transfers the entire content of the given source byte array into this buffer. An invocation of this method of the form dst.put(a) behaves in exactly the same way as the invocation
dst.put(a, 0, a.length) src - the source byte arraychar getChar()
Reads the next two bytes at this buffer's current position, composing them into a char value according to the current byte order, and then increments the position by two.
BufferUnderflowException - If there are fewer than two bytes
remaining in this bufferBuffer putChar(char value)
Writes two bytes containing the given char value, in the current byte order, into this buffer at the current position, and then increments the position by two.
value - The char value to be writtenBufferOverflowException - If there are fewer than two bytes
remaining in this bufferReadOnlyBufferException - If this buffer is read-onlychar getChar(int index)
Reads two bytes at the given index, composing them into a char value according to the current byte order.
index - The index from which the bytes will be readIndexOutOfBoundsException - If index is negative
or not smaller than the buffer's limit,
minus oneBuffer putChar(int index, char value)
Writes two bytes containing the given char value, in the current byte order, into this buffer at the given index.
index - The index at which the bytes will be writtenvalue - The char value to be writtenIndexOutOfBoundsException - If index is negative
or not smaller than the buffer's limit,
minus oneReadOnlyBufferException - If this buffer is read-onlyshort getShort()
Reads the next two bytes at this buffer's current position, composing them into a short value according to the current byte order, and then increments the position by two.
BufferUnderflowException - If there are fewer than two bytes
remaining in this bufferBuffer putShort(short value)
Writes two bytes containing the given short value, in the current byte order, into this buffer at the current position, and then increments the position by two.
value - The short value to be writtenBufferOverflowException - If there are fewer than two bytes
remaining in this bufferReadOnlyBufferException - If this buffer is read-onlyshort getShort(int index)
Reads two bytes at the given index, composing them into a short value according to the current byte order.
index - The index from which the bytes will be readIndexOutOfBoundsException - If index is negative
or not smaller than the buffer's limit,
minus oneBuffer putShort(int index, short value)
Writes two bytes containing the given short value, in the current byte order, into this buffer at the given index.
index - The index at which the bytes will be writtenvalue - The short value to be writtenIndexOutOfBoundsException - If index is negative
or not smaller than the buffer's limit,
minus oneReadOnlyBufferException - If this buffer is read-onlyint getInt()
Reads the next four bytes at this buffer's current position, composing them into an int value according to the current byte order, and then increments the position by four.
BufferUnderflowException - If there are fewer than four bytes
remaining in this bufferBuffer putInt(int value)
Writes four bytes containing the given int value, in the current byte order, into this buffer at the current position, and then increments the position by four.
value - The int value to be writtenBufferOverflowException - If there are fewer than four bytes
remaining in this bufferReadOnlyBufferException - If this buffer is read-onlyint getInt(int index)
Reads four bytes at the given index, composing them into a int value according to the current byte order.
index - The index from which the bytes will be readIndexOutOfBoundsException - If index is negative
or not smaller than the buffer's limit,
minus threeBuffer putInt(int index, int value)
Writes four bytes containing the given int value, in the current byte order, into this buffer at the given index.
index - The index at which the bytes will be writtenvalue - The int value to be writtenIndexOutOfBoundsException - If index is negative
or not smaller than the buffer's limit,
minus threeReadOnlyBufferException - If this buffer is read-onlylong getLong()
Reads the next eight bytes at this buffer's current position, composing them into a long value according to the current byte order, and then increments the position by eight.
BufferUnderflowException - If there are fewer than eight bytes
remaining in this bufferBuffer putLong(long value)
Writes eight bytes containing the given long value, in the current byte order, into this buffer at the current position, and then increments the position by eight.
value - The long value to be writtenBufferOverflowException - If there are fewer than eight bytes
remaining in this bufferReadOnlyBufferException - If this buffer is read-onlylong getLong(int index)
Reads eight bytes at the given index, composing them into a long value according to the current byte order.
index - The index from which the bytes will be readIndexOutOfBoundsException - If index is negative
or not smaller than the buffer's limit,
minus sevenBuffer putLong(int index, long value)
Writes eight bytes containing the given long value, in the current byte order, into this buffer at the given index.
index - The index at which the bytes will be writtenvalue - The long value to be writtenIndexOutOfBoundsException - If index is negative
or not smaller than the buffer's limit,
minus sevenReadOnlyBufferException - If this buffer is read-onlyfloat getFloat()
Reads the next four bytes at this buffer's current position, composing them into a float value according to the current byte order, and then increments the position by four.
BufferUnderflowException - If there are fewer than four bytes
remaining in this bufferBuffer putFloat(float value)
Writes four bytes containing the given float value, in the current byte order, into this buffer at the current position, and then increments the position by four.
value - The float value to be writtenBufferOverflowException - If there are fewer than four bytes
remaining in this bufferReadOnlyBufferException - If this buffer is read-onlyfloat getFloat(int index)
Reads four bytes at the given index, composing them into a float value according to the current byte order.
index - The index from which the bytes will be readIndexOutOfBoundsException - If index is negative
or not smaller than the buffer's limit,
minus threeBuffer putFloat(int index, float value)
Writes four bytes containing the given float value, in the current byte order, into this buffer at the given index.
index - The index at which the bytes will be writtenvalue - The float value to be writtenIndexOutOfBoundsException - If index is negative
or not smaller than the buffer's limit,
minus threeReadOnlyBufferException - If this buffer is read-onlydouble getDouble()
Reads the next eight bytes at this buffer's current position, composing them into a double value according to the current byte order, and then increments the position by eight.
BufferUnderflowException - If there are fewer than eight bytes
remaining in this bufferBuffer putDouble(double value)
Writes eight bytes containing the given double value, in the current byte order, into this buffer at the current position, and then increments the position by eight.
value - The double value to be writtenBufferOverflowException - If there are fewer than eight bytes
remaining in this bufferReadOnlyBufferException - If this buffer is read-onlydouble getDouble(int index)
Reads eight bytes at the given index, composing them into a double value according to the current byte order.
index - The index from which the bytes will be readIndexOutOfBoundsException - If index is negative
or not smaller than the buffer's limit,
minus sevenBuffer putDouble(int index, double value)
Writes eight bytes containing the given double value, in the current byte order, into this buffer at the given index.
index - The index at which the bytes will be writtenvalue - The double value to be writtenIndexOutOfBoundsException - If index is negative
or not smaller than the buffer's limit,
minus sevenReadOnlyBufferException - If this buffer is read-onlyCopyright © 2017–2019 Eclipse Foundation. All rights reserved.