From class ByteBuffer
ByteBuffer |
alignedSlice(unitSize: Int)
Creates a new byte buffer whose content is a shared and aligned subsequence of this buffer's content.
The content of the new buffer will start at this buffer's current position rounded up to the index of the nearest aligned byte for the given unit size, and end at this buffer's limit rounded down to the index of the nearest aligned byte for the given unit size. If rounding results in out-of-bound values then the new buffer's capacity and limit will be zero. If rounding is within bounds the following expressions will be true for a new buffer nb and unit size unitSize:
<code>nb.alignmentOffset(0, unitSize) == 0
nb.alignmentOffset(nb.limit(), unitSize) == 0
</code>
Changes to this buffer's content will be visible in the new buffer, and vice versa; the two buffers' position, limit, and mark values will be independent.
The new buffer's position will be zero, its capacity and its limit will be the number of bytes remaining in this buffer or fewer subject to alignment, its mark will be undefined, and its byte order will be BIG_ENDIAN. 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.
|
Int |
alignmentOffset(index: Int, unitSize: Int)
Returns the memory address, pointing to the byte at the given index, modulo the given unit size.
The return value is non-negative in the range of 0 (inclusive) up to unitSize (exclusive), with zero indicating that the address of the byte at the index is aligned for the unit size, and a positive value that the address is misaligned for the unit size. If the address of the byte at the index is misaligned, the return value represents how much the index should be adjusted to locate a byte at an aligned address. Specifically, the index should either be decremented by the return value if the latter is not greater than index, or be incremented by the unit size minus the return value. Therefore given
int value = alignmentOffset(index, unitSize)
then the identities
alignmentOffset(index - value, unitSize) == 0, value ≤ index
and
alignmentOffset(index + (unitSize - value), unitSize) == 0
must hold.
|
ByteBuffer |
allocate(capacity: Int)
Allocates a new byte buffer.
The new buffer's position will be zero, its limit will be its capacity, its mark will be undefined, each of its elements will be initialized to zero, and its byte order will be BIG_ENDIAN. It will have a backing array, and its array offset will be zero.
|
ByteBuffer |
allocateDirect(capacity: Int)
Allocates a new direct byte buffer.
The new buffer's position will be zero, its limit will be its capacity, its mark will be undefined, each of its elements will be initialized to zero, and its byte order will be BIG_ENDIAN. Whether or not it has a backing array is unspecified.
|
ByteArray |
array()
Returns the byte array that backs this buffer (optional operation).
Modifications to this buffer's content will cause the returned array's content to be modified, and vice versa.
Invoke the hasArray method before invoking this method in order to ensure that this buffer has an accessible backing array.
|
Int |
arrayOffset()
Returns the offset within this buffer's backing array of the first element of the buffer (optional operation).
If this buffer is backed by an array then buffer position p corresponds to array index p + arrayOffset().
Invoke the hasArray method before invoking this method in order to ensure that this buffer has an accessible backing array.
|
CharBuffer |
asCharBuffer()
Creates a view of this byte buffer as a char buffer.
The content of the new buffer will start at this buffer's current position. Changes to this buffer's content will be visible in the new buffer, and vice versa; the two buffers' position, limit, and mark values will be independent.
The new buffer's position will be zero, its capacity and its limit will be the number of bytes remaining in this buffer divided by two, its mark will be undefined, and its byte order will be that of the byte buffer at the moment the view is created. 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.
|
DoubleBuffer |
asDoubleBuffer()
Creates a view of this byte buffer as a double buffer.
The content of the new buffer will start at this buffer's current position. Changes to this buffer's content will be visible in the new buffer, and vice versa; the two buffers' position, limit, and mark values will be independent.
The new buffer's position will be zero, its capacity and its limit will be the number of bytes remaining in this buffer divided by eight, its mark will be undefined, and its byte order will be that of the byte buffer at the moment the view is created. 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.
|
FloatBuffer |
asFloatBuffer()
Creates a view of this byte buffer as a float buffer.
The content of the new buffer will start at this buffer's current position. Changes to this buffer's content will be visible in the new buffer, and vice versa; the two buffers' position, limit, and mark values will be independent.
The new buffer's position will be zero, its capacity and its limit will be the number of bytes remaining in this buffer divided by four, its mark will be undefined, and its byte order will be that of the byte buffer at the moment the view is created. 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.
|
IntBuffer |
asIntBuffer()
Creates a view of this byte buffer as an int buffer.
The content of the new buffer will start at this buffer's current position. Changes to this buffer's content will be visible in the new buffer, and vice versa; the two buffers' position, limit, and mark values will be independent.
The new buffer's position will be zero, its capacity and its limit will be the number of bytes remaining in this buffer divided by four, its mark will be undefined, and its byte order will be that of the byte buffer at the moment the view is created. 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.
|
LongBuffer |
asLongBuffer()
Creates a view of this byte buffer as a long buffer.
The content of the new buffer will start at this buffer's current position. Changes to this buffer's content will be visible in the new buffer, and vice versa; the two buffers' position, limit, and mark values will be independent.
The new buffer's position will be zero, its capacity and its limit will be the number of bytes remaining in this buffer divided by eight, its mark will be undefined, and its byte order will be that of the byte buffer at the moment the view is created. 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.
|
ByteBuffer |
asReadOnlyBuffer()
Creates a new, read-only byte 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; the new buffer itself, however, will be read-only and will not allow the shared content to be modified. The two buffers' 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, and its byte order will be BIG_ENDIAN.
If this buffer is itself read-only then this method behaves in exactly the same way as the duplicate method.
|
ShortBuffer |
asShortBuffer()
Creates a view of this byte buffer as a short buffer.
The content of the new buffer will start at this buffer's current position. Changes to this buffer's content will be visible in the new buffer, and vice versa; the two buffers' position, limit, and mark values will be independent.
The new buffer's position will be zero, its capacity and its limit will be the number of bytes remaining in this buffer divided by two, its mark will be undefined, and its byte order will be that of the byte buffer at the moment the view is created. 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.
|
Int |
compareTo(other: ByteBuffer)
Compares this buffer to another.
Two byte buffers are compared by comparing their sequences of remaining elements lexicographically, without regard to the starting position of each sequence within its corresponding buffer. Pairs of byte elements are compared as if by invoking Byte.compare(byte,byte).
A byte buffer is not comparable to any other type of object.
|
Boolean |
equals(other: Any?)
Tells whether or not this buffer is equal to another object.
Two byte buffers are equal if, and only if,
- They have the same element type,
- They have the same number of remaining elements, and
- The two sequences of remaining elements, considered independently of their starting positions, are pointwise equal.
A byte buffer is not equal to any other type of object.
|
Byte |
get()
Relative get method. Reads the byte at this buffer's current position, and then increments the position.
|
ByteBuffer |
get(dst: ByteArray)
Relative bulk get method.
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)
|
ByteBuffer |
get(dst: ByteArray, offset: Int, length: Int)
Relative bulk get method.
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
<code>for (int i = off; i < off + len; i++)
dst[i] = src.get();
</code>
except that it first checks that there are sufficient bytes in this buffer and it is potentially much more efficient.
|
Byte |
get(index: Int)
Absolute get method. Reads the byte at the given index.
|
ByteBuffer |
get(index: Int, dst: ByteArray)
Absolute bulk get method.
This method transfers bytes from this buffer into the given destination array. The position of this buffer is unchanged. An invocation of this method of the form src.get(index, dst) behaves in exactly the same way as the invocation:
src.get(index, dst, 0, dst.length)
|
ByteBuffer |
get(index: Int, dst: ByteArray, offset: Int, length: Int)
Absolute bulk get method.
This method transfers length bytes from this buffer into the given array, starting at the given index in this buffer and at the given offset in the array. The position of this buffer is unchanged.
An invocation of this method of the form src.get(index, dst, offset, length) has exactly the same effect as the following loop except that it first checks the consistency of the supplied parameters and it is potentially much more efficient:
<code>for (int i = offset, j = index; i < offset + length; i++, j++)
dst[i] = src.get(j);
</code>
|
Char |
getChar()
Relative get method for reading a char value.
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.
|
Char |
getChar(index: Int)
Absolute get method for reading a char value.
Reads two bytes at the given index, composing them into a char value according to the current byte order.
|
Double |
getDouble()
Relative get method for reading a double value.
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.
|
Double |
getDouble(index: Int)
Absolute get method for reading a double value.
Reads eight bytes at the given index, composing them into a double value according to the current byte order.
|
Float |
getFloat()
Relative get method for reading a float value.
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.
|
Float |
getFloat(index: Int)
Absolute get method for reading a float value.
Reads four bytes at the given index, composing them into a float value according to the current byte order.
|
Int |
getInt()
Relative get method for reading an int value.
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.
|
Int |
getInt(index: Int)
Absolute get method for reading an int value.
Reads four bytes at the given index, composing them into a int value according to the current byte order.
|
Long |
getLong()
Relative get method for reading a long value.
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.
|
Long |
getLong(index: Int)
Absolute get method for reading a long value.
Reads eight bytes at the given index, composing them into a long value according to the current byte order.
|
Short |
getShort()
Relative get method for reading a short value.
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.
|
Short |
getShort(index: Int)
Absolute get method for reading a short value.
Reads two bytes at the given index, composing them into a short value according to the current byte order.
|
Boolean |
hasArray()
Tells whether or not this buffer is backed by an accessible byte array.
If this method returns true then the array and arrayOffset methods may safely be invoked.
|
Int |
hashCode()
Returns the current hash code of this buffer.
The hash code of a byte buffer depends only upon its remaining elements; that is, upon the elements from position() up to, and including, the element at limit() - 1.
Because buffer hash codes are content-dependent, it is inadvisable to use buffers as keys in hash maps or similar data structures unless it is known that their contents will not change.
|
Boolean |
isDirect()
Tells whether or not this byte buffer is direct.
|
Int |
mismatch(that: ByteBuffer)
Finds and returns the relative index of the first mismatch between this buffer and a given buffer. The index is relative to the position of each buffer and will be in the range of 0 (inclusive) up to the smaller of the remaining elements in each buffer (exclusive).
If the two buffers share a common prefix then the returned index is the length of the common prefix and it follows that there is a mismatch between the two buffers at that index within the respective buffers. If one buffer is a proper prefix of the other then the returned index is the smaller of the remaining elements in each buffer, and it follows that the index is only valid for the buffer with the larger number of remaining elements. Otherwise, there is no mismatch.
|
ByteOrder |
order()
Retrieves this buffer's byte order.
The byte order is used when reading or writing multibyte values, and when creating buffers that are views of this byte buffer. The order of a newly-created byte buffer is always BIG_ENDIAN.
|
ByteBuffer |
order(bo: ByteOrder)
Modifies this buffer's byte order.
|
ByteBuffer |
put(b: Byte)
Relative put method (optional operation).
Writes the given byte into this buffer at the current position, and then increments the position.
|
ByteBuffer |
put(src: ByteArray)
Relative bulk put method (optional operation).
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)
|
ByteBuffer |
put(src: ByteArray, offset: Int, length: Int)
Relative bulk put method (optional operation).
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
<code>for (int i = off; i < off + len; i++)
dst.put(src[i]);
</code>
except that it first checks that there is sufficient space in this buffer and it is potentially much more efficient.
|
ByteBuffer |
put(index: Int, b: Byte)
Absolute put method (optional operation).
Writes the given byte into this buffer at the given index.
|
ByteBuffer |
put(index: Int, src: ByteArray)
Absolute bulk put method (optional operation).
This method copies bytes into this buffer from the given source array. The position of this buffer is unchanged. An invocation of this method of the form dst.put(index, src) behaves in exactly the same way as the invocation:
dst.put(index, src, 0, src.length);
|
ByteBuffer |
put(index: Int, src: ByteArray, offset: Int, length: Int)
Absolute bulk put method (optional operation).
This method transfers length bytes from the given array, starting at the given offset in the array and at the given index in this buffer. The position of this buffer is unchanged.
An invocation of this method of the form dst.put(index, src, offset, length) has exactly the same effect as the following loop except that it first checks the consistency of the supplied parameters and it is potentially much more efficient:
<code>for (int i = offset, j = index; i < offset + length; i++, j++)
dst.put(j, src[i]);
</code>
|
ByteBuffer |
put(index: Int, src: ByteBuffer, offset: Int, length: Int)
Absolute bulk put method (optional operation).
This method transfers length bytes into this buffer from the given source buffer, starting at the given offset in the source buffer and the given index in this buffer. The positions of both buffers are unchanged.
In other words, an invocation of this method of the form dst.put(index, src, offset, length) has exactly the same effect as the loop
<code>for (int i = offset, j = index; i < offset + length; i++, j++)
dst.put(j, src.get(i));
</code>
except that it first checks the consistency of the supplied parameters and it is potentially much more efficient. If this buffer and the source buffer share the same backing array or memory, then the result will be as if the source elements were first copied to an intermediate location before being written into this buffer.
|
ByteBuffer |
put(src: ByteBuffer)
Relative bulk put method (optional operation).
This method transfers the bytes remaining in the given source buffer into this buffer. If there are more bytes remaining in the source buffer than in this buffer, that is, if src.remaining() > remaining(), then no bytes are transferred and a BufferOverflowException is thrown.
Otherwise, this method copies n = src.remaining() bytes from the given buffer into this buffer, starting at each buffer's current position. The positions of both buffers are then incremented by n.
In other words, an invocation of this method of the form dst.put(src) has exactly the same effect as the loop
while (src.hasRemaining())
dst.put(src.get());
except that it first checks that there is sufficient space in this buffer and it is potentially much more efficient. If this buffer and the source buffer share the same backing array or memory, then the result will be as if the source elements were first copied to an intermediate location before being written into this buffer.
|
ByteBuffer |
putChar(value: Char)
Relative put method for writing a char value (optional operation).
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.
|
ByteBuffer |
putChar(index: Int, value: Char)
Absolute put method for writing a char value (optional operation).
Writes two bytes containing the given char value, in the current byte order, into this buffer at the given index.
|
ByteBuffer |
putDouble(value: Double)
Relative put method for writing a double value (optional operation).
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.
|
ByteBuffer |
putDouble(index: Int, value: Double)
Absolute put method for writing a double value (optional operation).
Writes eight bytes containing the given double value, in the current byte order, into this buffer at the given index.
|
ByteBuffer |
putFloat(value: Float)
Relative put method for writing a float value (optional operation).
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.
|
ByteBuffer |
putFloat(index: Int, value: Float)
Absolute put method for writing a float value (optional operation).
Writes four bytes containing the given float value, in the current byte order, into this buffer at the given index.
|
ByteBuffer |
putInt(value: Int)
Relative put method for writing an int value (optional operation).
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.
|
ByteBuffer |
putInt(index: Int, value: Int)
Absolute put method for writing an int value (optional operation).
Writes four bytes containing the given int value, in the current byte order, into this buffer at the given index.
|
ByteBuffer |
putLong(index: Int, value: Long)
Absolute put method for writing a long value (optional operation).
Writes eight bytes containing the given long value, in the current byte order, into this buffer at the given index.
|
ByteBuffer |
putLong(value: Long)
Relative put method for writing a long value (optional operation).
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.
|
ByteBuffer |
putShort(index: Int, value: Short)
Absolute put method for writing a short value (optional operation).
Writes two bytes containing the given short value, in the current byte order, into this buffer at the given index.
|
ByteBuffer |
putShort(value: Short)
Relative put method for writing a short value (optional operation).
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.
|
String |
toString()
Returns a string su | |